summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-03-20 09:47:40 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2015-03-20 16:06:23 +0000
commit6e0500ed2d1acb507fc2764351d3eb2315717320 (patch)
treeee0749a0c62d69b27baa08bafa778fe3f1cf0bb4
parentf9852d6a50ab56ebce951675d4a162b033d6dd42 (diff)
downloaddefinitions-6e0500ed2d1acb507fc2764351d3eb2315717320.tar.gz
openstack-net-config: Check whether we need to run before gethering network config
-rw-r--r--openstack/usr/share/openstack/openstack-neutron-network-configuration-for-one-node8
1 files changed, 4 insertions, 4 deletions
diff --git a/openstack/usr/share/openstack/openstack-neutron-network-configuration-for-one-node b/openstack/usr/share/openstack/openstack-neutron-network-configuration-for-one-node
index f5f5444a..abf1113e 100644
--- a/openstack/usr/share/openstack/openstack-neutron-network-configuration-for-one-node
+++ b/openstack/usr/share/openstack/openstack-neutron-network-configuration-for-one-node
@@ -17,15 +17,15 @@
set -xe
+if [ -f /var/openstack/openvswitch-one-node-setup ]; then
+ exit 0
+fi
+
# Get the first ethernet driver and its ip
eth_dev="$(ip addr | perl -pe 'if (/^\d+: ([^:]+)/) { $iface=$1; } if (m@^\s*inet ([^/]+)/@) { print "$iface $1\n"; } $_=undef;' | grep "^e" | head -1 | awk '{ print $1 } ')"
eth_ip="$(ip addr | perl -pe 'if (/^\d+: ([^:]+)/) { $iface=$1; } if (m@^\s*inet ([^/]+)/@) { print "$iface $1\n"; } $_=undef;' | grep "^e" | head -1 | awk '{ print $2 } ')"
eth_mac="$(ip link show $eth_dev | tr -s '[:space:]' '\n' | sed -n '/link\/ether/{n;p}')"
-if [ -f /var/openstack/openvswitch-one-node-setup ]; then
- exit 0
-fi
-
# Create the bridges to use the External network mapped
# This configuration is for 1 node and it was taken from:
# https://fosskb.wordpress.com/2014/10/18/openstack-juno-on-ubuntu-14-10/