-For VM nics after the first, default to *NOIP*. More complicated topologies will be considered when asked

In brief, modify discovery to discover by mac table if VM, so as to fill out the topology info


git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6921 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2010-07-30 12:59:46 +00:00
parent 3f6c71ca6d
commit d67cdb6d92

View File

@ -121,7 +121,7 @@ sub requestMacAddresses {
if (not $macdata) {
$macdata = $macaddr;
} else {
$macdata .= "|".$macaddr;
$macdata .= "|".$macaddr."*NOIP*";
}
push @macs,$macaddr;
}
@ -185,7 +185,7 @@ sub getMacAddresses {
if (not $macdata) {
$macdata = $macaddr;
} else {
$macdata .= "|".$macaddr;
$macdata .= "|".$macaddr."*NOIP*";
}
push @macs,$macaddr;
}