rmilter/debian/postrm
2015-02-13 05:08:37 +00:00

12 lines
199 B
Bash

#!/bin/sh
set -e
if [ "$1" = "purge" ]; then
update-rc.d rmilter remove >/dev/null
fi
if [ -d /run/systemd/system ]; then
systemctl --system daemon-reload >/dev/null || true
fi
#DEBHELPER#