summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2010-03-13 12:58:07 +0000
committerNoah Slater <nslater@apache.org>2010-03-13 12:58:07 +0000
commite42397b55ef426a5038d5053fdd5de9d6d484675 (patch)
tree8688024b18ebbbbcffe30ffa62d227d7bdced558 /etc
parent1e62826522a322119c4ce84113283434dae02ea7 (diff)
simplified init script options
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@922547 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'etc')
-rw-r--r--etc/init/couchdb.tpl.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/init/couchdb.tpl.in b/etc/init/couchdb.tpl.in
index 8afd5d62..3b8d17ea 100644
--- a/etc/init/couchdb.tpl.in
+++ b/etc/init/couchdb.tpl.in
@@ -141,7 +141,7 @@ parse_script_option_list () {
log_end_msg $SCRIPT_ERROR
fi
;;
- restart|force-reload)
+ restart)
log_daemon_msg "Restarting $DESCRIPTION" $NAME
if stop_couchdb; then
if start_couchdb; then
@@ -158,7 +158,7 @@ parse_script_option_list () {
;;
*)
cat << EOF >&2
-Usage: $SCRIPT_NAME {start|stop|restart|force-reload|status}
+Usage: $SCRIPT_NAME {start|stop|restart|status}
EOF
exit $SCRIPT_ERROR
;;