From e14d25c0a4e2506d17af4f4e05818c865d1c8f8f Mon Sep 17 00:00:00 2001 From: Jean-Christophe Hugly Date: Tue, 8 Oct 2024 13:53:06 +0200 Subject: [PATCH] useradd needs a user name too. --- dist/rpm/scion.postinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/rpm/scion.postinst b/dist/rpm/scion.postinst index cbdba50244..8d64fde9a5 100644 --- a/dist/rpm/scion.postinst +++ b/dist/rpm/scion.postinst @@ -3,7 +3,7 @@ set -e # Create system user/group groupadd --system -f scion -useradd --system --gid scion -M -s /sbin/nologin +useradd --system --gid scion -M -s /sbin/nologin scion # Create configuration directory mkdir /etc/scion/ >& /dev/null || true