Merge pull request #120 from Smana/fix_etcd_initd

etcd initd startup command fix
This commit is contained in:
Antoine Legrand
2016-01-30 22:42:13 +01:00

View File

@ -46,8 +46,8 @@ do_status()
# #
do_start() do_start()
{ {
start-stop-daemon --background --start --quiet --make-pidfile --pidfile $PID --user $DAEMON_USER --exec $DAEMON \ start-stop-daemon --background --start --quiet --make-pidfile --pidfile $PID --user $DAEMON_USER --exec $DAEMON -- \
$DAEMON_OPTS \ $DAEMON_ARGS \
|| return 2 || return 2
} }