From 9c322bc69df99a59036cfae5e2cca8a12d2710c3 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Wed, 2 Jul 2014 15:13:34 -0400 Subject: ifcfg: don't call set Interface for vlans... Drop the 'set Interface $DEVICE external-ids:iface-id=...' config from ifcfg ovs vlans. --- os_net_config/impl_ifcfg.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'os_net_config/impl_ifcfg.py') diff --git a/os_net_config/impl_ifcfg.py b/os_net_config/impl_ifcfg.py index ff4a059..91a6fd2 100644 --- a/os_net_config/impl_ifcfg.py +++ b/os_net_config/impl_ifcfg.py @@ -55,9 +55,6 @@ class IfcfgNetConfig(os_net_config.NetConfig): data += "TYPE=OVSIntPort\n" data += "OVS_BRIDGE=%s\n" % base_opt.bridge_name data += "OVS_OPTIONS=\"tag=%s\"\n" % base_opt.vlan_id - data += "OVS_EXTRA=\"set Interface $DEVICE " - data += "external-ids:iface-id=$(hostname -s)" - data += "-$DEVICE-vif\"\n" else: data += "TYPE=OVSPort\n" data += "OVS_BRIDGE=%s\n" % base_opt.bridge_name -- cgit 1.2.3-korg