Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ cp "$GIT"/scripts/*.sh "$IPATH"
UNAME=adsbexchange
if ! id -u "${UNAME}" &>/dev/null
then
# 2nd syntax is for fedora / centos
adduser --system --home "$IPATH" --no-create-home --quiet "$UNAME" || adduser --system --home-dir "$IPATH" --no-create-home "$UNAME"
# 2nd syntax is for fedora / centos / arch / everyone else
adduser --system --home "$IPATH" --no-create-home --quiet "$UNAME" || useradd --system --home-dir "$IPATH" --no-create-home "$UNAME"
fi

echo 4
Expand Down