diff options
Diffstat (limited to 'main/ez-ipupdate/ez-ipupdate.initd')
-rw-r--r-- | main/ez-ipupdate/ez-ipupdate.initd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/ez-ipupdate/ez-ipupdate.initd b/main/ez-ipupdate/ez-ipupdate.initd index 45d287412..b01183597 100644 --- a/main/ez-ipupdate/ez-ipupdate.initd +++ b/main/ez-ipupdate/ez-ipupdate.initd @@ -27,7 +27,7 @@ depend() { start() { ebegin "Starting ${NAME}" start-stop-daemon --start --quiet \ - --pidfile /var/run/${NAME}.pid \ + --pidfile /var/run/${NAME}/${NAME}.pid \ --chuid ${DAEMON_USER}:${DAEMON_GROUP} \ --exec ${DAEMON} -- ${OPTS} eend $? @@ -36,8 +36,8 @@ start() { stop() { ebegin "Stopping ${NAME}" start-stop-daemon --stop --quiet \ - --exec ${DAEMON} \ - --pidfile /var/run/${NAME}.pid \ + --pidfile /var/run/${NAME}/${NAME}.pid \ + --exec ${DAEMON} eend $? } |