slackbuilds_ponce/system/cdemu-daemon/README.SLACKWARE
Isaac Yu 38648a9cbc system/cdemu-daemon: Updated for version 3.2.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2019-09-14 11:26:05 +07:00

16 lines
386 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