From 82d6f58677cf366e188be37d529ab293e2838e5a Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Tue, 22 Feb 2022 21:38:47 +0100 Subject: debian/postinst: Fix add user call, add user account name (which was obviously missing). --- debian/postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/postinst b/debian/postinst index c434be5..26e12d3 100755 --- a/debian/postinst +++ b/debian/postinst @@ -26,7 +26,7 @@ case "${1}" in if ! getent 'passwd' 'fai' >'/dev/null'; then echo 'Creating fai system user.' >&2 adduser --system --home /var/log/fai/client-logs \ - --disabled-password --shell /bin/bash + --disabled-password --shell /bin/bash fai fi ;; 'abort-upgrade'|'abort-remove'|'abort-deconfigure') -- cgit v1.2.3