use correct table to read netboot method

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3026 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2009-03-28 05:09:26 +00:00
parent eca58ec37a
commit 4bef85fd54

View File

@ -948,7 +948,7 @@ sub setup_TFTP
${"xCAT_plugin::mknb::"}{process_request}->($cmdref, \&xCAT::Client::handle_response);
#now, run nodeset enact on
my $mactab = xCAT::Table->new('mac');
my $hmtab = xCAT::Table->new('nodehm');
my $hmtab = xCAT::Table->new('noderes');
if ($mactab and $hmtab) {
my @mentries = ($mactab->getAllNodeAttribs([qw(node mac)])); #nodeset fails if no mac entry, filter on discovered nodes first...
my %netmethods;