X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=88bca34f93df3fd42969fb4e7fa41f44c9445d10;hb=709fdb91b20f897277f8ac5fd5b87d1671d33905;hp=113a00b566f06bcbdcd0dcd0c9c7525c9881396b;hpb=1f6973c4ef9c321cc3bcbb06285770883c080da4;p=monit-cn.git diff --git a/debian/postinst b/debian/postinst index 113a00b..88bca34 100755 --- a/debian/postinst +++ b/debian/postinst @@ -1,5 +1,5 @@ #!/bin/sh -# postinst script for bind9-cn +# postinst script for monit-cn # # see: dh_installdeb(1) @@ -34,7 +34,7 @@ esac installfile=1 if [ -e /etc/monit/monitrc ]; then lines=$(grep -v '^#' /etc/monit/monitrc | wc -l) - if [ $lines -lt 2 ]; then + if [ $lines -lt 4 ]; then installfile=1 mv -f /etc/monit/monitrc /etc/monit/monitrc.dpkg-old else @@ -57,15 +57,8 @@ if grep -q '@localhost' /etc/monit/monitrc; then fi # fix "but not on { changed } bug in monitrc -cp_check_and_sed '^set alert [^[:space:]]*@[^[:space:]]* (but )?not on { changed }$' \ - 's/^set alert \([^[:space:]]*@[^[:space:]]*\) .*$/set alert \1 only on { uid, gid, size, nonexist, data, icmp, instance, invalid, exec, timeout, resource, checksum, match, timestamp, connection, permission }/g' \ - /etc/monit/monitrc || true - -# if alert for "changed" is enabled, disable it ASAP -# we're waiting for "but not on { changed }" to enter in official -# package... -cp_check_and_sed '^set alert [^[:space:]]*@[^[:space:]]*$' \ - 's/^set alert \([^[:space:]]*@[^[:space:]]*\)$/set alert \1 only on { uid, gid, size, nonexist, data, icmp, instance, invalid, exec, timeout, resource, checksum, match, timestamp, connection, permission }/g' \ +cp_check_and_sed '^set alert [^[:space:]]*@[^[:space:]]* $' \ + 's/^set alert \([^[:space:]]*@[^[:space:]]*\).*$/set alert \1 but not on { instance }/g' \ /etc/monit/monitrc || true # (re)generate monit.d files @@ -73,7 +66,7 @@ update-monit.d || true # disable monit startup cp_check_and_sed '^startup[[:space:]]*=[[:space:]]*1' \ - '^s/startup[[:space:]]*=.*/startup=0/g' /etc/default/monit || true + 's/^startup[[:space:]]*=.*/startup=0/g' /etc/default/monit || true # systemv part if ! grep -q 'CARNet package monit-cn' /etc/init.d/monit; then @@ -105,8 +98,7 @@ fi # install as inittab service if ! grep -q '/usr/sbin/monit' /etc/inittab; then echo "CN: Installing monit service in /etc/inittab" - rm -f /etc/inittab.$$ - cp /etc/inittab /etc/inittab.$$ + cp -a /etc/inittab /etc/inittab.$$ cp-update monit-cn /etc/inittab.$$ <