summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xadduser.local2
1 files changed, 1 insertions, 1 deletions
diff --git a/adduser.local b/adduser.local
index ff6c441..319255e 100755
--- a/adduser.local
+++ b/adduser.local
@@ -38,7 +38,7 @@ add2list() { /bin/echo "$1" | /usr/sbin/add_members -w y -a y -r - "$2"; }
. /etc/adduser.conf
# Ignore non-human accounts silently
-[ "$NEWUID" -ge "$FIRST_UID" -a "$NEWUID" -le "$LAST_UID" ] || exit 0
+[ "$NEWUID" -ge "$FIRST_UID" ] && [ "$NEWUID" -le "$LAST_UID" ] || exit 0
[ ! -r /etc/local/users.conf ] || . /etc/local/users.conf