debian postinst: fix user/group mixup

This commit is contained in:
Reynir Björnsson 2021-11-13 16:45:32 +01:00 committed by Hannes Mehnert
parent 294a46df86
commit 31971c8e6e

View file

@ -2,10 +2,10 @@
set -e
BUILDER_WEB_USER=builder
if ! getent passwd "$BUILDER_WEB_USER" >/dev/null; then
if ! getent group "$BUILDER_WEB_USER" >/dev/null; then
groupadd -g 497 $BUILDER_WEB_USER
fi
if ! getent group "$BUILDER_WEB_USER" >/dev/null; then
if ! getent passwd "$BUILDER_WEB_USER" >/dev/null; then
useradd -g 497 -u 497 -d /nonexistent -s /usr/sbin/nologin $BUILDER_WEB_USER
fi