X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=97dd2100cfe28ab13d8a36c496080562055af556;hb=73983673253277faed06aa536fd3c145faece6fa;hp=e5edbbb0eb0e060b4c73664ec354bcd4e56a21d4;hpb=5212d51fc40173b98d63228a20a10fb8b1610dde;p=monit-cn.git diff --git a/debian/postinst b/debian/postinst index e5edbbb..97dd210 100755 --- a/debian/postinst +++ b/debian/postinst @@ -56,12 +56,24 @@ if grep -q '@localhost' /etc/monit/monitrc; then /etc/monit/monitrc || true 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' \ + /etc/monit/monitrc || true + # (re)generate monit.d files update-monit.d || true # disable monit startup -cp_check_and_sed '^startup=1/#startup=1/g' /etc/default/monit \ - || true +cp_check_and_sed '^startup[[:space:]]*=[[:space:]]*1' \ + '^s/startup[[:space:]]*=.*/startup=0/g' /etc/default/monit || true # systemv part echo "CN: Disabling monit SystemV script"