From 7df8920aae216092bdee9c19aadab09ed48195e5 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Hugly Date: Tue, 8 Oct 2024 15:09:59 +0200 Subject: [PATCH] Ignore user creation error (due to redundancy). --- 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 8d64fde9a5..1b828f110e 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 scion +useradd --system --gid scion -M -s /sbin/nologin scion >& /dev/null || true # Create configuration directory mkdir /etc/scion/ >& /dev/null || true