main/ez-ipupdate: move the pidfile to /var/run/ez-ipupdate

This commit is contained in:
Natanael Copa 2009-08-22 14:52:09 +00:00
parent 49afd339b0
commit 5de10ff30d
2 changed files with 4 additions and 4 deletions

View File

@ -33,4 +33,4 @@ build() {
md5sums="6505c9d18ef6b5ce13fe2a668eb5724b ez-ipupdate-3.0.10.tar.gz
e6e06780b1896f2250132cc16cd10710 ez-ipupdate.confd
04b773d467e9793c9a4e3b0e9d6a2f7f ez-ipupdate.initd"
5ac899387790691156eb4d0ff2b3f480 ez-ipupdate.initd"

View File

@ -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 $?
}