aboutsummaryrefslogtreecommitdiff
path: root/xenserver/etc_init.d_openvswitch-xapi-update
diff options
context:
space:
mode:
authorEthan Jackson <ethan@nicira.com>2011-04-11 18:33:06 -0700
committerEthan Jackson <ethan@nicira.com>2011-04-12 13:18:42 -0700
commit594329e59a667aaa83012e6da054ac41c8f4996e (patch)
treec19228e2b8e53549e1262b363715232797ade507 /xenserver/etc_init.d_openvswitch-xapi-update
parent0b18063d0ad94dafb8d74de9d6ad04da894228d2 (diff)
xenserver: Don't openvswitch-xapi-update in bridge mode.
This commit causes the init scripts not to call the openvswitch-cfg-update plugin when in bridge mode.
Diffstat (limited to 'xenserver/etc_init.d_openvswitch-xapi-update')
-rwxr-xr-xxenserver/etc_init.d_openvswitch-xapi-update17
1 files changed, 17 insertions, 0 deletions
diff --git a/xenserver/etc_init.d_openvswitch-xapi-update b/xenserver/etc_init.d_openvswitch-xapi-update
index 7b2efd1c..14d2cc9b 100755
--- a/xenserver/etc_init.d_openvswitch-xapi-update
+++ b/xenserver/etc_init.d_openvswitch-xapi-update
@@ -39,6 +39,23 @@ function start {
printf "openvswitch-xapi-update ERROR: XenSource inventory not present in /etc/xensource-inventory\n"
exit 1
fi
+
+ if test -e /etc/xensource/network.conf; then
+ NETWORK_MODE=$(cat /etc/xensource/network.conf)
+ fi
+
+ case ${NETWORK_MODE:=openvswitch} in
+ vswitch|openvswitch)
+ ;;
+ bridge)
+ exit 0
+ ;;
+ *)
+ echo "Open vSwitch disabled (/etc/xensource/network.conf is invalid)" >&2
+ exit 0
+ ;;
+ esac
+
source /etc/xensource-inventory
action "Updating configuration" do_host_call
}