diff options
author | juraj.linkes <jlinkes@cisco.com> | 2017-02-01 13:30:17 +0100 |
---|---|---|
committer | juraj.linkes <jlinkes@cisco.com> | 2017-02-01 13:30:17 +0100 |
commit | ec5d1ea5c5ceb379f7b1eb4332f29a1dcc3d40ac (patch) | |
tree | 27f48735d95c64ebd54cdf827109b802b7c7a8f8 | |
parent | cc19c9b3c5e62c6009e66abb035a5e678210c550 (diff) |
fixed typo in functest_sim.sh
Change-Id: I3f8c4fde4aaabd9b39bf6cadf33bc5bd2adceb06
Signed-off-by: juraj.linkes <jlinkes@cisco.com>
-rwxr-xr-x | scripts/functest_sim.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functest_sim.sh b/scripts/functest_sim.sh index abc6ec9..6b36367 100755 --- a/scripts/functest_sim.sh +++ b/scripts/functest_sim.sh @@ -34,4 +34,4 @@ nova add-secgroup test-vm2 test-secgroup # FLOATING IP echo "Creating and associating floating IP for the first VM" floatingip_id=`neutron floatingip-create external | grep " id " | tr -s " " | cut -f 4 -d " "` -neutron floatingip-associate $floatingip_id `neutron port-list | grep 192.168.20.3 | cut -d " " -f 2 +neutron floatingip-associate $floatingip_id `neutron port-list | grep 192.168.20.3 | cut -d " " -f 2` |