From 1a247e8393d9756d52c9d84c5611e2804bef7f96 Mon Sep 17 00:00:00 2001 From: Mate Lakat Date: Tue, 5 Aug 2014 14:32:51 +0100 Subject: [PATCH] XenApi: Fix domu typo in neutron setup A typo has been introduced during a previous refactor, leaving us with two neutron config files, one with domu and one with domU extension. This fix corrects the mistake, thus always the .domU file is used. Change-Id: Iffb6e2f70915f50ee590c375494c6f642412b543 --- lib/neutron_plugins/openvswitch_agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/neutron_plugins/openvswitch_agent b/lib/neutron_plugins/openvswitch_agent index 5adb0c5e43..cd0ea18d1a 100644 --- a/lib/neutron_plugins/openvswitch_agent +++ b/lib/neutron_plugins/openvswitch_agent @@ -67,7 +67,7 @@ function neutron_plugin_configure_plugin_agent { if [ "$VIRT_DRIVER" == 'xenserver' ]; then # Make a copy of our config for domU - sudo cp /$Q_PLUGIN_CONF_FILE "/$Q_PLUGIN_CONF_FILE.domu" + sudo cp /$Q_PLUGIN_CONF_FILE "/$Q_PLUGIN_CONF_FILE.domU" # Deal with Dom0's L2 Agent: Q_RR_DOM0_COMMAND="$NEUTRON_BIN_DIR/neutron-rootwrap-xen-dom0 $Q_RR_CONF_FILE"