summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2015-03-20 09:47:40 +0000
committerRichard Ipsum <richardipsum@fastmail.co.uk>2015-04-10 20:17:44 +0100
commite6f5ff9d0b709b09e7ad3441f57127c59cc750ab (patch)
treed367033ae10871f000573629fd4c45c62c75adcd
parentfbbf47efe4052b72e89b78e066ab0149ea5ccd49 (diff)
downloaddefinitions-e6f5ff9d0b709b09e7ad3441f57127c59cc750ab.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/