Use bash ranges "{1..3}" instead of "$(seq 1 3)".
This commit is contained in:
@@ -284,7 +284,7 @@ function pc-create-vm {
|
||||
|
||||
# Wait for the VM to be started and connected to the network
|
||||
have_network=0
|
||||
for i in $(seq 120); do
|
||||
for i in {1..120}; do
|
||||
# photon -n vm networks print several fields:
|
||||
# NETWORK MAC IP GATEWAY CONNECTED?
|
||||
# We wait until CONNECTED is True
|
||||
|
Reference in New Issue
Block a user