Displaying 2 results from an estimated 2 matches for "vl_filename".
Did you mean:
ll_filename
2009 Jul 13
1
[PATCH node] Adds vlan support to auto-installations for the node. bz#511056
...rm ${VL_ROOT}\nset ${VL_ROOT}/DEVICE ${NIC}.${VLAN_ID}"
- VL_CONFIG="${VL_CONFIG}\nset ${VL_ROOT}/BRIDGE ${BRIDGE}"
- VL_CONFIG="${VL_CONFIG}\nset ${VL_ROOT}/VLAN yes"
- VL_FILENAME="${IF_FILENAME}.${VLAN_ID}"
+ VLAN_ID=$REPLY
+ setup_vlan $NIC $BRIDGE $VLAN_ID VL_ROOT VL_CONFIG $IF_ROOT VL_FILENAME $IF_FILENAME
break
fi
;;
@@ -236,12 +259,21 @@ functi...
2010 Oct 25
0
[PATCH node] add network.py script
...tc/ntp.conf"
+ self.NTPSERVERS=""
+ self.CONFIGURED_NIC= ""
+ self.IF_CONFIG = ""
+ self.BR_CONFIG = ""
+ self.VL_CONFIG = ""
+ self.VLAN_ID=""
+ self.VL_ROOT=""
+ self.VL_FILENAME =""
+ self.nic=""
+ self.bridge=""
+ self.vlan_id=""
+
+ def configure_interface(self):
+ log("Configuring Interface")
+ if OVIRT_VARS.has_key("OVIRT_IP_ADDRESS"):
+ IPADDR = OVIRT_VARS[&quo...