mirror of
https://github.com/donl/rmilter.git
synced 2026-05-27 06:19:03 -06:00
8 lines
142 B
Bash
8 lines
142 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -x /etc/init.d/rmilter ] && ! [ -d /run/systemd/system ]; then
|
|
invoke-rc.d rmilter stop || exit $?
|
|
fi
|
|
|
|
#DEBHELPER#
|