/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-client.postinst

  • Committer: Teddy Hogeborn
  • Date: 2008-09-19 01:10:27 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080919011027-rhb2aafbgqe85s00
* debian/mandos-client.postinst: Create mandos user and group.

* debian/mandos.postrm: Removed.  Never delete mandos user and group.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
case "$1" in
29
29
    configure)
 
30
        if ! getent passwd mandos >/dev/null; then
 
31
            adduser --disabled-password  --quiet --system \
 
32
                --home /var/run/mandos --no-create-home \
 
33
                --gecos "Mandos password daemon" --group mandos
 
34
        fi
30
35
        update_initramfs
31
36
        ;;
32
37