X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/386e23e3f885b50c833d0c73da3a14965f350359..195e09db8f2bb83665f5536dd46330467c251900:/functest/test_admins.sh diff --git a/functest/test_admins.sh b/functest/test_admins.sh index d82d97bc..b19df2b0 100755 --- a/functest/test_admins.sh +++ b/functest/test_admins.sh @@ -1,5 +1,7 @@ #!/bin/sh +source `dirname $0`/functions + BASEPATH=$1 SGCONFPATH="$BASEPATH/stg/projects/sgconf" @@ -12,25 +14,11 @@ then exit 0 fi -printf "Got admins list:\n" - -LOGINS="" -OLDIFS=$IFS -IFS=$(printf "\n") -for LINE in $RES -do - printf -- "$LINE\n" - LOGIN=`printf "$LINE" | grep login` - if [ "$?" == "0" ] - then - LOGINS="$LOGINS\n"`printf "$LOGIN" | cut -d: -f2 | sed -e 's/^ *//' -e 's/ *$//'` - fi -done -IFS=$OLDIFS +LOGINS=`getFields "login" "$RES"` printf "Logins:\n$LOGINS\n" -NUM=`printf "$LOGINS" | wc -l` +NUM=`count "$LOGINS"` printf -- "--------\n$NUM\n\n"