File: inn2.prerm

package info (click to toggle)
inn2 2.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 10,728 kB
  • sloc: ansic: 102,029; perl: 16,837; sh: 16,752; makefile: 4,014; yacc: 798; lex: 270; python: 268; sql: 192
file content (17 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

kill_innd() {
    if [ -x /etc/init.d/inn2 ]; then
	invoke-rc.d inn2 stop
    fi
}

case "$1" in
    remove|deconfigure|failed-upgrade)
	kill_innd
    ;;
esac

#DEBHELPER#

exit 0