From: Ben Pfaff Date: Fri, 15 May 2009 18:14:39 +0000 (-0700) Subject: xenserver: Fix path to invoke cfg-mod utility when removing a vif. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf921db26956899c8969fd5f563838f30f7a0590;p=openvswitch xenserver: Fix path to invoke cfg-mod utility when removing a vif. It's possible that this fixes a real bug. --- diff --git a/xenserver/etc_xensource_scripts_vif b/xenserver/etc_xensource_scripts_vif index 33312423..43eafa7b 100755 --- a/xenserver/etc_xensource_scripts_vif +++ b/xenserver/etc_xensource_scripts_vif @@ -121,7 +121,7 @@ remove) xenstore-rm "${HOTPLUG}/hotplug" vif=vif${DOMID}.${DEVID} logger -t scripts-vif "${vif} has been removed" - $cfg-mod -vANY:console:emer -F /etc/vswitchd.conf \ + $cfg_mod -vANY:console:emer -F /etc/vswitchd.conf \ --del-match="bridge.*.port=${vif}" \ --del-match="vlan.${vif}.[!0-9]*" ;;