mirror of
https://github.com/donl/rmilter.git
synced 2026-05-26 14:22:12 -06:00
12 lines
199 B
Bash
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#
|