X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=debian%2Fpostinst;h=faf9cf4924cc3d7f49dc5042fe4c9353d9b0a4fb;hb=ddf20534be4f63dda63edadad5e96f76530e2969;hp=3b4574ff0cce2ddbe7de150268e360131d408225;hpb=f66fb4651481ac215af954d08750a31c73839765;p=spamassassin-cn.git diff --git a/debian/postinst b/debian/postinst index 3b4574f..faf9cf4 100755 --- a/debian/postinst +++ b/debian/postinst @@ -238,10 +238,12 @@ if [ -f $examdir/local.cf ]; then $confdir/local.cf.$$ || true echo "CN: Activated $trusted_networks as trusted networks" - cp_check_and_sed "^bayes_auto_expire 1" \ - "s#^bayes_auto_expire .*#bayes_auto_expire 0#g" \ - $confdir/local.cf.$$ || true - echo "CN: Set bayes_auto_expire to 0" + if dpkg --compare-versions "$2" lt "2:3.3.5"; then + cp_check_and_sed "^bayes_auto_expire 1" \ + "s#^bayes_auto_expire .*#bayes_auto_expire 0#g" \ + $confdir/local.cf.$$ || true + echo "CN: Set bayes_auto_expire to 0" + fi # different than template if ! cmp -s $confdir/local.cf.$$ $confdir/local.cf; then @@ -407,7 +409,7 @@ echo "CN: SpamAssassin updates are now logged at /var/log/sa-update.log" if [ "x$restart" = "xyes" ]; then if [ -x /usr/sbin/invoke-rc.d ]; then pkill -f /usr/sbin/spamd || true - invoke-rc.d --quiet spamassassin restart + invoke-rc.d spamassassin restart else /etc/init.d/spamassassin restart fi