From: oetiker Date: Fri, 10 Oct 2008 05:21:19 +0000 (+0000) Subject: This patch ensures that when rrdcached is stopped, it cleans up the X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fe69ade916fb9dcc6d24297b86c667045e3b29a4;p=rrdtool-all.git This patch ensures that when rrdcached is stopped, it cleans up the pid file. Apparently this is necessary if RRDCACHED_USER is not the default "rrdcached". -- Bernard Li git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@1595 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/etc/rrdcached-init b/program/etc/rrdcached-init index 0748cb1a..45b5cdf7 100644 --- a/program/etc/rrdcached-init +++ b/program/etc/rrdcached-init @@ -36,7 +36,7 @@ case "$1" in killproc rrdcached RETVAL=$? echo - [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/rrdcached + [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/rrdcached && rm -rf $PIDFILE ;; restart|reload)