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
|
done
|
||||||
|
|
||||||
LOGINS=$(who -u | grep pts\/ | wc -l)
|
LOGINS=$(who -u | grep pts\/ | wc -l)
|
||||||
if ! [[ "$LOGINS" =~ "^0$" ]]
|
if [[ "$LOGINS" -gt 0 ]]
|
||||||
then
|
then
|
||||||
echo "ABORT: $LOGINS user logins"
|
echo "ABORT: $LOGINS user logins"
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue