blob: baa607e61bcfbc818990e3a119e469faf2abf7c2 [file] [log] [blame]
#!/bin/sh -e
# Make sure debconf runs before the postinst
if [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_stop
fi
# We're still getting some wierdness with symlinks
# Bug 201324
if [ -h /etc/logcheck/ignore.d.server/spamassassin ] ; then
rm -f /etc/logcheck/ignore.d.server/spamassassin
fi
if [ -h /etc/logcheck/ignore.d.workstation/spamassassin ] ; then
rm -f /etc/logcheck/ignore.d.workstation/spamassassin
fi
if [ -h /etc/logcheck/ignore.d.paranoid/spamassassin ] ; then
rm -f /etc/logcheck/ignore.d.paranoid/spamassassin
fi
#DEBHELPER#