From: Wilfried Göesgens Date: Wed, 7 Feb 2007 16:21:18 +0000 (+0000) Subject: * call useradd the right way. X-Git-Tag: v7.86~3592 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=0a01b306730f8a0a1f114f9a05fce714432d73cd * call useradd the right way. --- diff --git a/citadel/debian/changelog b/citadel/debian/changelog index b8b3b3117..34322f0ab 100644 --- a/citadel/debian/changelog +++ b/citadel/debian/changelog @@ -1,3 +1,9 @@ +citadel (7.03-5) unstable; urgency=low + + * fixed user create bug + + -- Wilfried Goesgens Wed, 07 Feb 2007 00:12:00 +0100 + citadel (7.03-4) unstable; urgency=low * varyous fixes from our valgrind session diff --git a/citadel/debian/citadel-common.postinst b/citadel/debian/citadel-common.postinst index 30e9104c9..67d37cd92 100644 --- a/citadel/debian/citadel-common.postinst +++ b/citadel/debian/citadel-common.postinst @@ -15,7 +15,7 @@ case "$1" in if ! getent passwd citadel >/dev/null; then adduser --system --ingroup citadel --home /var/lib/citadel \ --gecos "Citadel system user" --shell /bin/sh \ - --disabled-password --no-create-home citadel --shell /bin/false + --disabled-password --no-create-home --shell /bin/false citadel fi chown -R citadel:citadel /etc/citadel