labs: remove redundant variable setting

In setup_neutron_network, nsdhcp is set twice. Remove the second,
redundant instance.

Change-Id: I677d8d76632a4a70c22830b79b93da705c033a58
This commit is contained in:
Roger Luethi 2014-09-25 12:20:03 +02:00
parent d09e5f185b
commit 30be48bb12

View File

@ -174,13 +174,11 @@ until ip netns|grep qdhcp; do
done
nsdhcp=$(ip netns|grep qdhcp)
echo -n "Waiting for interface qr-* in router namespace."
until sudo ip netns exec "$nsrouter" ip addr|grep -Po "(?<=: )qr-.*(?=:)"; do
echo -n "."
sleep 1
done
nsdhcp=$(ip netns|grep qdhcp)
echo -n "Waiting for interface qg-* in router namespace."
until sudo ip netns exec "$nsrouter" ip addr|grep -Po "(?<=: )qg-.*(?=:)"; do