From e39f4ceee91a1e6ab43411e019055fd171a2148a Mon Sep 17 00:00:00 2001 From: Jonas Date: Sat, 16 Nov 2013 12:32:16 +0100 Subject: Avoid bashism in test. --- adduser.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3