v5/debian/DEBIAN/postrm
Jerry.Benton 0081af3fec update
none
2016-05-02 04:27:16 -04:00

17 lines
No EOL
274 B
Bash

#!/bin/sh
# postrm script for mailscanner
#
set -e
# unregister the old startup script
update-rc.d -f mailscanner remove
if [ -L '/etc/init.d/mailscanner' ]; then
rm -f /etc/init.d/mailscanner
fi
if [ -f '/etc/init.d/ms' ]; then
rm -f /etc/init.d/mailscanner
fi
exit 0