-Fix problem where dhcpinterfaces was not being honored in the simplest case

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3083 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2009-04-03 18:03:08 +00:00
parent 33cda83eb4
commit c62af3f608

View File

@ -364,8 +364,9 @@ sub process_request
INTF: foreach $dhcpif (split /;/,$dhcpinterfaces) {
my $host;
my $savehost;
my $foundself;
my $foundself=1;
if ($dhcpif =~ /\|/) {
$foundself=0;
(my $ngroup,$dhcpif) = split /\|/,$dhcpif;
foreach $host (noderange($ngroup)) {