search for: iface_name

Displaying 8 results from an estimated 8 matches for "iface_name".

2010 Jul 21
1
[PATCH] Add support for tagged VLAN
...uration.rb index fac653b..47360c0 100644 --- a/src/lib/managed_node_configuration.rb +++ b/src/lib/managed_node_configuration.rb @@ -95,6 +95,21 @@ class ManagedNodeConfiguration nic.netmask, nic.broadcast, nic.gateway) add_nic(result, nic.mac, iface_name) + + # process the vlan tagging + + nic.network.usages.map do |usage| + usage.networks.map do |net| + if net.type == "Vlan" + eth_vlan_name = "#{nic.interface_name}.#{net.number}" + add_bridge(result, 'none', eth_vlan_name,...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...# create the hard disk file + if [ -n "${hdsize}" ]; then + hdfile=$WORKDIR/$nodename-hd.img + create_hard_disk $hdfile $hdsize + fi + + define_node $nodefile $nodename "${memory}" "${boot_device}" "${hdfile}" "${cdfile}" $IFACE_NAME "${args}" +} + +# $1 - the node name +# $2 - undefine the node (def. true) +destroy_node () { + local nodename=$1 + local undefine=${2-true} + + # if preserving nodes then exit + if $preserve_vm; then return; fi + + if [ -n "${nodename}" ]; then + check=$(s...
2009 Jul 21
1
[PATCH node-image] Moved all temporary files into a single work directory to clean up.
...{new_device}"'/") @@ -471,7 +472,7 @@ substitute_boot_device () { add_test "test_stateless_pxe" test_stateless_pxe () { local nodename="${vm_prefix}-stateless-pxe" - local workdir=$(mktemp -d) + local workdir=$WORKDIR start_networking $nodename $IFACE_NAME false true $workdir @@ -513,7 +514,7 @@ exit 3' add_test "test_stateless_pxe_with_nohd" test_stateless_pxe_with_nohd () { local nodename="${vm_prefix}-stateless-pxe-nohd" - local workdir=$(mktemp -d) + local workdir=$WORKDIR start_networking $nodename $...
2009 Jul 10
2
[PATCH: server 0/3] Add host-register.rb (replaces host-browser.rb in part)
Removes node identification functionality from host-browser.rb and adds a new script, host-register.rb, that takes over that functionality. The chief difference is that host-browser used a simple TCP server setup to get data from the node, while host-register uses the qpid bus to do so. Specifically, it communicates with the matahari qmf agent added to the node in two related patchsets to node
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...hd" -test_stateless_pxe_with_nohd () { - local nodename="${vm_prefix}-stateless-pxe-nohd" +add_test "test_stateless_pxe" +test_stateless_pxe () { + local nodename="${vm_prefix}-stateless-pxe" local workdir=$(mktemp -d) start_networking $nodename $IFACE_NAME false true $workdir - configure_node "${nodename}" "network" "" "" "" "local noapic=true" - boot_with_pxe "${nodename}" "firstboot=no" "${workdir}" + configure_node "${nodename}" "net...
2009 Jul 16
1
[PATCH node-image] Removes the explicit setting of the emulator for testing.
...; - result="${result}\n<emulator>${emulator}</emulator>" # inject the hard disk if defined if [ -n "$harddrive" ]; then debug "Adding a hard drive to the node" @@ -566,7 +564,7 @@ test_stateful_pxe () { start_networking $nodename $IFACE_NAME false true $workdir configure_node "${nodename}" "network" "" "10000" "" "local noapic=true" - boot_with_pxe "${nodename}" "standalone storage_init=/dev/vda local_boot ip=${ipaddress}" ${workdir} + boot_wit...
2009 Jul 08
1
[PATCH: host-browser replacement 0/3] replacement of host-browser on ovirt-server
The purpose of this patch is to replace the identify function in host-browser.rb with a new script, host-register.rb. host-register.rb is a qmf ruby console that interfaces with the newly added matahari qmf agent on the ovirt node. While it stores node data in the database with the same behavior as the original host-browser implementation, it acquires the data using the amqp protocol (and
2009 Jul 29
3
yum update broke ovirt
I did a yum update on my management server and now the ovirt gui is no longer accessable. Is it supposed to just work or do I need to do something after the yum update? Justin.