/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
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
195 by Teddy Hogeborn
* debian/control (mandos, mandos-client): Depend on "adduser".
20
# Update the initial RAM file system image
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
21
update_initramfs()
22
{
195 by Teddy Hogeborn
* debian/control (mandos, mandos-client): Depend on "adduser".
23
    if [ -x /usr/sbin/update-initramfs ]; then
24
	update-initramfs -u -k all
25
    fi
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
26
}
27
190 by Teddy Hogeborn
* debian/mandos-client.postinst: Use "type" instead of "which". Split
28
# Add user and group
29
add_mandos_user(){
30
    if ! getent passwd mandos >/dev/null; then
31
	adduser --disabled-password  --quiet --system \
210 by Teddy Hogeborn
* debian/mandos-client.postinst: Change home directory to
32
	    --home /nonexistent --no-create-home \
195 by Teddy Hogeborn
* debian/control (mandos, mandos-client): Depend on "adduser".
33
	    --gecos "Mandos password system" --group mandos
190 by Teddy Hogeborn
* debian/mandos-client.postinst: Use "type" instead of "which". Split
34
    fi
35
}
36
37
# Create client key pair
38
create_key(){
194 by Teddy Hogeborn
* debian/mandos-client.postinst (create_key): Do not abort on existing
39
    if [ -r /etc/keys/mandos/pubkey.txt \
40
	-a -r /etc/keys/mandos/seckey.txt ]; then
41
	return 0
42
    fi
195 by Teddy Hogeborn
* debian/control (mandos, mandos-client): Depend on "adduser".
43
    if [ -x /usr/sbin/mandos-keygen ]; then
194 by Teddy Hogeborn
* debian/mandos-client.postinst (create_key): Do not abort on existing
44
	mandos-keygen
45
    fi
190 by Teddy Hogeborn
* debian/mandos-client.postinst: Use "type" instead of "which". Split
46
}
47
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
48
case "$1" in
49
    configure)
190 by Teddy Hogeborn
* debian/mandos-client.postinst: Use "type" instead of "which". Split
50
	add_mandos_user
51
	create_key
185 by Teddy Hogeborn
* .bzr-builddeb/default.conf: New.
52
	update_initramfs
53
	;;
54
    abort-upgrade|abort-deconfigure|abort-remove)
55
	;;
56
57
    *)
58
	echo "$0 called with unknown argument \`$1'" 1>&2
59
	exit 1
60
	;;
61
esac
62
63
#DEBHELPER#
64
65
exit 0