=== modified file 'debian/mandos-client.postinst' --- debian/mandos-client.postinst 2008-09-17 00:34:09 +0000 +++ debian/mandos-client.postinst 2008-09-19 01:10:27 +0000 @@ -27,6 +27,11 @@ case "$1" in configure) + if ! getent passwd mandos >/dev/null; then + adduser --disabled-password --quiet --system \ + --home /var/run/mandos --no-create-home \ + --gecos "Mandos password daemon" --group mandos + fi update_initramfs ;; === removed file 'debian/mandos.postrm' --- debian/mandos.postrm 2008-09-19 00:54:24 +0000 +++ debian/mandos.postrm 1970-01-01 00:00:00 +0000 @@ -1,11 +0,0 @@ -#!/bin/sh - -set -e - -#DEBHELPER# - -if [ "$1" = "purge" ] ; then - deluser --quiet --system mandos > /dev/null || true - delgroup --quiet --system mandos > /dev/null || true -fi -