summaryrefslogtreecommitdiffstats
path: root/development/couchdb/README.SLACKWARE
diff options
context:
space:
mode:
Diffstat (limited to 'development/couchdb/README.SLACKWARE')
-rw-r--r--development/couchdb/README.SLACKWARE14
1 files changed, 14 insertions, 0 deletions
diff --git a/development/couchdb/README.SLACKWARE b/development/couchdb/README.SLACKWARE
new file mode 100644
index 0000000000..d58e749736
--- /dev/null
+++ b/development/couchdb/README.SLACKWARE
@@ -0,0 +1,14 @@
+To start CouchDB automatically at system startup, add the following to
+your system's /etc/rc.d/rc.local init script:
+
+ if [ -x /etc/rc.d/rc.couchdb ]; then
+ /etc/rc.d/rc.couchdb start
+ fi
+
+To stop CouchDB automatically at system shutdown, add the following to
+your system's /etc/rc.d/rc.local_shutdown script:
+
+ if [ -x /etc/rc.d/rc.couchdb ]; then
+ /etc/rc.d/rc.couchdb stop
+ fi
+