X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=113a00b566f06bcbdcd0dcd0c9c7525c9881396b;hb=1f6973c4ef9c321cc3bcbb06285770883c080da4;hp=7324eeca2086b54c26148959af073f1787dd1415;hpb=ff6e29a0b03ab8c26b5e49bcb7e4d74ef84d02cb;p=monit-cn.git diff --git a/debian/postinst b/debian/postinst index 7324eec..113a00b 100755 --- a/debian/postinst +++ b/debian/postinst @@ -73,20 +73,20 @@ update-monit.d || true # disable monit startup cp_check_and_sed '^startup[[:space:]]*=[[:space:]]*1' \ - '^startup[[:space:]]*=.*/startup=0/g' /etc/default/monit || true + '^s/startup[[:space:]]*=.*/startup=0/g' /etc/default/monit || true # systemv part -echo "CN: Disabling monit SystemV script" -if [ -x "/etc/init.d/monit" ]; then - update-rc.d -f monit remove >/dev/null 2>&1 - if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then - invoke-rc.d monit stop || true - else - /etc/init.d/monit stop || true +if ! grep -q 'CARNet package monit-cn' /etc/init.d/monit; then + echo "CN: Disabling monit SystemV script" + if [ -x "/etc/init.d/monit" ]; then + update-rc.d -f monit remove >/dev/null 2>&1 + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d monit stop || true + else + /etc/init.d/monit stop || true + fi fi -fi -if [ -e "/etc/init.d/monit" ]; then - if ! grep -q 'CARNet package monit-cn' /etc/init.d/monit; then + if [ -e "/etc/init.d/monit" ]; then # shebang head -n1 /etc/init.d/monit > /etc/init.d/monit.$$ # middle part @@ -116,7 +116,7 @@ fi # reload init, since we have new configuration echo "CN: (Re)starting monit service, please check /var/log/daemon.log" -pkill -9 -f /usr/sbin/monit || true +pkill -9 -f '/usr/sbin/monit$' || true kill -HUP 1 # dh_installdeb will replace this with shell code automatically