/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to debian/mandos.postinst

  • Committer: Teddy Hogeborn
  • Date: 2008-09-19 00:54:24 UTC
  • mto: This revision was merged to the branch mainline in revision 188.
  • Revision ID: teddy@fukt.bsnet.se-20080919005424-2kw5e1h9pjygj4ug
* debian/mandos.postinst: New. Create mandos user and group.

* debian/mandos.postrm: New.  Delete mandos user and group.

* initramfs-tools-hook: Add "--userid" and "--groupid" to
                        "plugin-runner.conf" if necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 \
 
24
                --home /var/run/mandos --no-create-home \
 
25
                --gecos "Mandos password daemon" --group mandos
 
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