From dc7130422fda3952239073955c8bfc1639b13623 Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 28 Apr 2008 12:28:52 +0000 Subject: [PATCH] Comment out nodeonmynet check git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1210 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/lib/xcat/plugins/pxe.pm | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/xCAT-server-2.0/lib/xcat/plugins/pxe.pm b/xCAT-server-2.0/lib/xcat/plugins/pxe.pm index 9e534ee76..91618f851 100644 --- a/xCAT-server-2.0/lib/xcat/plugins/pxe.pm +++ b/xCAT-server-2.0/lib/xcat/plugins/pxe.pm @@ -217,12 +217,13 @@ sub process_request { } return; } - @nodes = (); - foreach (@rnodes) { - if (xCAT::Utils->nodeonmynet($_)) { - push @nodes,$_; - } - } + @nodes = @rnodes; + #@nodes = (); + #foreach (@rnodes) { + #if (xCAT::Utils->nodeonmynet($_)) { + # push @nodes,$_; + #} + #} if (! -r "$tftpdir/pxelinux.0") { unless (-r "/usr/lib/syslinux/pxelinux.0") { $callback->({error=>["Unable to find pxelinux.0 "],errorcode=>[1]});