Skip to content

Commit

Permalink
Ignore user creation error (due to redundancy).
Browse files Browse the repository at this point in the history
  • Loading branch information
jiceatscion committed Oct 8, 2024
1 parent e14d25c commit 7df8920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/rpm/scion.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7df8920

Please sign in to comment.