fix if
This commit is contained in:
parent
df607f0656
commit
cf6e716301
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ do
|
|||
done
|
||||
|
||||
LOGINS=$(who -u | grep pts\/ | wc -l)
|
||||
if ! [[ "$LOGINS" =~ "^0$" ]]
|
||||
if [[ "$LOGINS" -gt 0 ]]
|
||||
then
|
||||
echo "ABORT: $LOGINS user logins"
|
||||
exit 0
|
||||
|
|
Loading…
Reference in a new issue