Revision 23533,
1.1 KB
checked in by broder, 16 years ago
(diff) |
In debathena-discuss-server, update the logic that configures inetd to
match the athinfod and larvnet packaging.
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # postrm script for debathena-discuss-server |
---|
3 | # |
---|
4 | # see: dh_installdeb(1) |
---|
5 | |
---|
6 | set -e |
---|
7 | |
---|
8 | # summary of how this script can be called: |
---|
9 | # * <postrm> `remove' |
---|
10 | # * <postrm> `purge' |
---|
11 | # * <old-postrm> `upgrade' <new-version> |
---|
12 | # * <new-postrm> `failed-upgrade' <old-version> |
---|
13 | # * <new-postrm> `abort-install' |
---|
14 | # * <new-postrm> `abort-install' <old-version> |
---|
15 | # * <new-postrm> `abort-upgrade' <old-version> |
---|
16 | # * <disappearer's-postrm> `disappear' <overwriter> |
---|
17 | # <overwriter-version> |
---|
18 | # for details, see http://www.debian.org/doc/debian-policy/ or |
---|
19 | # the debian-policy package |
---|
20 | |
---|
21 | |
---|
22 | case "$1" in |
---|
23 | purge) |
---|
24 | if getent passwd discuss >/dev/null; then |
---|
25 | deluser --system discuss || : |
---|
26 | fi |
---|
27 | ;; |
---|
28 | |
---|
29 | remove) |
---|
30 | if hash update-inetd 2>/dev/null; then |
---|
31 | update-inetd --remove "(#<off># )?discuss" |
---|
32 | ;; |
---|
33 | |
---|
34 | upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) |
---|
35 | ;; |
---|
36 | |
---|
37 | *) |
---|
38 | echo "postrm called with unknown argument \`$1'" >&2 |
---|
39 | exit 1 |
---|
40 | ;; |
---|
41 | esac |
---|
42 | |
---|
43 | # dh_installdeb will replace this with shell code automatically |
---|
44 | # generated by other debhelper scripts. |
---|
45 | |
---|
46 | #DEBHELPER# |
---|
47 | |
---|
48 | exit 0 |
---|
49 | |
---|
50 | |
---|
Note: See
TracBrowser
for help on using the repository browser.