aboutsummaryrefslogtreecommitdiff
path: root/system/cdemu-daemon/README.SLACKWARE
diff options
context:
space:
mode:
authorNiklas Nille Åkerström <nille.kungen[AT]gmail.com>2010-05-11 22:55:13 +0200
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-11 22:55:13 +0200
commitfd133f51ff16a501bc64ea218b0fa86df2dafb47 (patch)
tree16028a468b52e1b89fedb65e87e93cd4bcb496db /system/cdemu-daemon/README.SLACKWARE
parent01c5a6263c5ade57ed671a1e857ccdfe1dce02f3 (diff)
downloadslackbuilds-fd133f51ff16a501bc64ea218b0fa86df2dafb47.tar.xz
system/cdemu-daemon: Added to 12.1 repository
Diffstat (limited to 'system/cdemu-daemon/README.SLACKWARE')
-rw-r--r--system/cdemu-daemon/README.SLACKWARE17
1 files changed, 17 insertions, 0 deletions
diff --git a/system/cdemu-daemon/README.SLACKWARE b/system/cdemu-daemon/README.SLACKWARE
new file mode 100644
index 000000000000..53a905c99453
--- /dev/null
+++ b/system/cdemu-daemon/README.SLACKWARE
@@ -0,0 +1,17 @@
+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
+