diff options
Diffstat (limited to 'system/cdemu-daemon/README.SLACKWARE')
-rw-r--r-- | system/cdemu-daemon/README.SLACKWARE | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/system/cdemu-daemon/README.SLACKWARE b/system/cdemu-daemon/README.SLACKWARE index 53a905c99453b..3569f6367c969 100644 --- a/system/cdemu-daemon/README.SLACKWARE +++ b/system/cdemu-daemon/README.SLACKWARE @@ -2,16 +2,15 @@ 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 + # 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 - + # Stop cdemu-daemon. + if [ -x /etc/rc.d/rc.cdemud ]; then + /etc/rc.d/rc.cdemud stop + fi |