Displaying 1 result from an estimated 1 matches for "vlfilename".
Did you mean:
vl_filename
2009 Jul 13
1
[PATCH node] Adds vlan support to auto-installations for the node. bz#511056
...ariable
+# $5 - the VL_CONFIG variable
+# $6 - the IF_ROOT value
+# $7 - the vlan config filename variable
+# $8 - the NIC config filename
+function setup_vlan
+{
+ local nic=$1
+ local bridge=$2
+ local vlan_id=$3
+ local vlroot=$4
+ local vlconfig=$5
+ local ifroot=$6
+ local vlfilename=$7
+ local iffilename=$8
+
+ eval $vlroot="${ifroot}.${vlan_id}"
+ eval $vlconfig=\"rm \$${vlroot}\\nset \$${vlroot}/DEVICE ${nic}.${vlan_id}\"
+ eval $vlconfig=\"\$${vlconfig}\\nset \$${vlroot}/BRIDGE ${bridge}\"
+ eval $vlconfig=\"\$${vlconfig}\\n...