bzr branch
http://bzr.recompile.se/loggerhead/mandos/trunk
187.1.1
by Teddy Hogeborn
* debian/mandos.postinst: New. Create mandos user and group. |
1 |
#!/bin/bash -e
|
2 |
# This script can be called in the following ways:
|
|
3 |
#
|
|
4 |
# After the package was installed:
|
|
5 |
# <postinst> configure <old-version>
|
|
6 |
#
|
|
7 |
#
|
|
8 |
# If prerm fails during upgrade or fails on failed upgrade:
|
|
9 |
# <old-postinst> abort-upgrade <new-version>
|
|
10 |
#
|
|
11 |
# If prerm fails during deconfiguration of a package:
|
|
12 |
# <postinst> abort-deconfigure in-favour <new-package> <version>
|
|
13 |
# removing <old-package> <version>
|
|
14 |
#
|
|
15 |
# If prerm fails during replacement due to conflict:
|
|
16 |
# <postinst> abort-remove in-favour <new-package> <version>
|
|
17 |
||
18 |
. /usr/share/debconf/confmodule
|
|
19 |
||
20 |
case "$1" in |
|
21 |
configure) |
|
22 |
if ! getent passwd mandos >/dev/null; then |
|
23 |
adduser --disabled-password --quiet --system \ |
|
210
by Teddy Hogeborn
* debian/mandos-client.postinst: Change home directory to |
24 |
--home /nonexistent --no-create-home \ |
195
by Teddy Hogeborn
* debian/control (mandos, mandos-client): Depend on "adduser". |
25 |
--gecos "Mandos password system" --group mandos |
187.1.1
by Teddy Hogeborn
* debian/mandos.postinst: New. Create mandos user and group. |
26 |
fi |
27 |
;; |
|
28 |
||
29 |
abort-upgrade|abort-deconfigure|abort-remove) |
|
30 |
;; |
|
31 |
||
32 |
*) |
|
33 |
echo "$0 called with unknown argument \`$1'" 1>&2 |
|
34 |
exit 1 |
|
35 |
;; |
|
36 |
esac
|
|
37 |
||
38 |
#DEBHELPER#
|
|
39 |
||
40 |
exit 0 |