see if this works better for having dh put things in the right places
[debian/git-daemon] / debian / git-daemon.postinst
1 #!/bin/sh
2 set -e
3
4 test "$1" = 'configure' || exit 0
5
6 getent passwd gitdaemon >/dev/null || \
7   adduser --system --home /nonexistent --no-create-home gitdaemon
8
9 #DEBHELPER#