From c2b52d1a50f8a3d00019ecec089555d510cb1ab7 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Thu, 3 Sep 2009 21:13:28 +0000 Subject: [PATCH] -Fix bug in previous checkin git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4098 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/boottarget.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/boottarget.pm b/xCAT-server/lib/xcat/plugins/boottarget.pm index b9a7c0f2c..2ec345a87 100644 --- a/xCAT-server/lib/xcat/plugins/boottarget.pm +++ b/xCAT-server/lib/xcat/plugins/boottarget.pm @@ -163,7 +163,7 @@ sub mknetboot #TODO: big todo, cheap and rapid, but should be more like esx.pm implementation, i.e. more scalable while ($kcmdline =~ /#NODEATTRIB:([^:#]+):([^:#]+)#/) { my $natab = xCAT::Table->new($1); - my $naent = getNodeAttribs($node,[$2]); + my $naent = $natab->getNodeAttribs($node,[$2]); my $naval = $naent->{$2}; $add =~ s/#NODEATTRIB:([^:#]+):([^:#]+)#/$naval/; }