To get this branch, use:
bzr branch
http://bzr.recompile.se/loggerhead/mandos/release
187.1.1
by Teddy Hogeborn
* debian/mandos.postinst: New. Create mandos user and group.
|
1
|
#!/bin/sh
|
2
|
|
3
|
set -e
|
4
|
|
5
|
#DEBHELPER#
|
6
|
|
7
|
if [ "$1" = "purge" ] ; then
|
8
|
deluser --quiet --system mandos > /dev/null || true
|
9
|
delgroup --quiet --system mandos > /dev/null || true
|
10
|
fi
|
11
|
|