File: prerm

package info (click to toggle)
shorewall-doc 3.2.6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,820 kB
  • ctags: 4
  • sloc: makefile: 37; sh: 26
file content (18 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh -e

case "$1" in
	# do not stop the firewall during an upgrade
	remove|upgrade)
        if which install-docs >/dev/null 2>&1; then
	    install-docs -r shorewall-doc
	fi
	;;
	deconfigure|failed-upgrade)
	;;
	*)
	echo "prerem called with unknown argument \`$1\'" >&2
	exit 1
	;;
esac

#DEBHELPER#