From 35c94832f16fa949ed7472e6b8ebe128ed333d3a Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Sat, 26 Mar 2022 10:43:45 +0100 Subject: user.eclass: Use arithmetic test for UID MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ulrich Müller --- eclass/user.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass') diff --git a/eclass/user.eclass b/eclass/user.eclass index 581704eae815..ff69be81c1ec 100644 --- a/eclass/user.eclass +++ b/eclass/user.eclass @@ -85,7 +85,7 @@ user_get_nologin() { # If -M is passed, enewuser does not create the home directory if it does not # exist. enewuser() { - if [[ ${EUID} != 0 ]] ; then + if [[ ${EUID} -ne 0 ]] ; then ewarn "Insufficient privileges to execute ${FUNCNAME[0]}" return 0 fi @@ -240,7 +240,7 @@ enewuser() { # If -F is passed, enewgroup will always enforce specified GID and fail if it # can not be assigned. enewgroup() { - if [[ ${EUID} != 0 ]] ; then + if [[ ${EUID} -ne 0 ]] ; then ewarn "Insufficient privileges to execute ${FUNCNAME[0]}" return 0 fi -- cgit v1.2.3-65-gdbad