author | Paul Crowley <paul@lshift.net> |
Tue, 10 Nov 2009 15:22:54 +0000 | |
branch | debian |
changeset 195 | 8835c2786eca |
parent 116 | d99f3169828a |
child 224 | caf9cb61f856 |
permissions | -rw-r--r-- |
97 | 1 |
#!/bin/sh |
2 |
# postrm script for mercurial-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 |
|
116
d99f3169828a
Looks like the start of a working Debianization
Paul Crowley <paul@lshift.net>
parents:
97
diff
changeset
|
23 |
purge) |
d99f3169828a
Looks like the start of a working Debianization
Paul Crowley <paul@lshift.net>
parents:
97
diff
changeset
|
24 |
deluser --quiet --system hg > /dev/null || true |
d99f3169828a
Looks like the start of a working Debianization
Paul Crowley <paul@lshift.net>
parents:
97
diff
changeset
|
25 |
delgroup --quiet --system hg > /dev/null || true |
d99f3169828a
Looks like the start of a working Debianization
Paul Crowley <paul@lshift.net>
parents:
97
diff
changeset
|
26 |
;; |
d99f3169828a
Looks like the start of a working Debianization
Paul Crowley <paul@lshift.net>
parents:
97
diff
changeset
|
27 |
|
d99f3169828a
Looks like the start of a working Debianization
Paul Crowley <paul@lshift.net>
parents:
97
diff
changeset
|
28 |
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) |
97 | 29 |
;; |
30 |
||
31 |
*) |
|
32 |
echo "postrm called with unknown argument \`$1'" >&2 |
|
33 |
exit 1 |
|
34 |
;; |
|
35 |
esac |
|
36 |
||
37 |
# dh_installdeb will replace this with shell code automatically |
|
38 |
# generated by other debhelper scripts. |
|
39 |
||
40 |
#DEBHELPER# |
|
41 |
||
42 |
exit 0 |
|
43 |
||
44 |