mirror of
https://github.com/OpenNebula/one.git
synced 2025-03-21 14:50:08 +03:00
Fix bad test expression in XEN shutdown script
This commit is contained in:
parent
87f034f260
commit
0fbc43e0ea
@ -30,7 +30,7 @@ exec_and_log "$XM_SHUTDOWN $deploy_id" \
|
||||
|
||||
OUT=$(gdm)
|
||||
|
||||
while [ -n "$OUT" -a $(echo $OUT | awk '{print $5}') != "---s--" ]; do
|
||||
while [ -n "$OUT" -a "$(echo $OUT | awk '{print $5}')" != "---s--" ]; do
|
||||
sleep 1
|
||||
OUT=$(gdm)
|
||||
done
|
||||
|
Loading…
x
Reference in New Issue
Block a user