mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
18 lines
395 B
Text
18 lines
395 B
Text
|
README.SLACKWARE
|
||
|
|
||
|
To start the cdemu-daemon at boot, add the following to /etc/rc.d/rc.local:
|
||
|
|
||
|
# Start cdemu-daemon.
|
||
|
if [ -x /etc/rc.d/rc.cdemud ]; then
|
||
|
/etc/rc.d/rc.cdemud start
|
||
|
fi
|
||
|
|
||
|
Add this to /etc/rc.d/rc.local_shutdown (if this file does not already
|
||
|
exist, create it and make it executable):
|
||
|
|
||
|
# Stop cdemu-daemon.
|
||
|
if [ -x /etc/rc.d/rc.cdemud ]; then
|
||
|
/etc/rc.d/rc.cdemud stop
|
||
|
fi
|
||
|
|