search for: ifacename

Displaying 3 results from an estimated 3 matches for "ifacename".

Did you mean: iface_name
2010 Mar 31
1
Incomplete patch
This patch is non-functional at this point; i.e., while it seems to meet the requirements for having libvirt using the specified TFTP root specified, libvirt seems to not be doing so.
2009 Jul 21
1
[PATCH node-image] Moved all temporary files into a single work directory to clean up.
...--log-queries --log-dhcp --pid-file=${pidfile}" @@ -180,7 +181,7 @@ start_networking () { local workdir=$5 local definition="" local network=$NETWORK - local xmlfile=$(mktemp) + local xmlfile=$WORKDIR/$nodename-$ifacename.xml debug "start_networking ()" for var in nodename ifacename use_dhcp start_dnsmasq workdir network xmlfile; do @@ -363,7 +364,7 @@ configure_node () { local hdfile="" local cdfile=$5 local args=$6 - local nodefile=$(mktemp) + local nodefile=$WO...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...ill -9 $DNSMASQ_PID + return + fi + fi + DNSMASQ_PID="0" +} + +# Creates a virt network. +# $1 - the node name +# $2 - the network interface name +# $3 - use DHCP (any value) +# $4 - start dnsmsq (def. false) +start_networking () { + local nodename=$1 + local ifacename=$2 + local use_dhcp=${3-false} + local start_dnsmasq=${4-false} + local workdir=$5 + local definition="" + local network=$NETWORK + local xmlfile=$WORKDIR/$nodename-$ifacename.xml + + debug "start_networking ()" + for var in nodename ifacename use_dhcp st...