summaryrefslogtreecommitdiffstats
path: root/development/couchdb/README.SLACKWARE
diff options
context:
space:
mode:
author Nicolas Steinmetz2010-05-13 00:57:51 +0200
committer Robby Workman2010-05-13 00:57:51 +0200
commit70134d23096dc55c66ea9bb088aa19200be18e99 (patch)
tree6abe8c777b7ab0a89adfce448b2ed7c7fc052eaa /development/couchdb/README.SLACKWARE
parent199a752bf47a887883f4afb5a896da638e7516f1 (diff)
downloadslackbuilds-70134d23096dc55c66ea9bb088aa19200be18e99.tar.gz
development/couchdb: Added to 13.0 repository
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
+