mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-08 08:44:05 +01:00
7ac72d4bb3
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@2349 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
22 lines
337 B
Bash
22 lines
337 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
# do not stop the firewall during an upgrade
|
|
remove)
|
|
if [ -x "/usr/sbin/invoke-rc.d" ]
|
|
then
|
|
invoke-rc.d shorewall stop
|
|
else
|
|
/etc/init.d/shorewall stop
|
|
fi
|
|
;;
|
|
upgrade|deconfigure|failed-upgrade)
|
|
;;
|
|
*)
|
|
echo "prerem called with unknown argument \`$1\'" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|