diff options
-rw-r--r-- | etc/init/couchdb.tpl.in | 4 |
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 ;; |