From df5f195e8419b025f540c3e468e313c6752bbd10 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 3 Sep 2010 19:11:14 +0000 Subject: [PATCH] -Fix getAttribs call git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7355 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/esx.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/esx.pm b/xCAT-server/lib/xcat/plugins/esx.pm index f85ba594e..49f4b029a 100644 --- a/xCAT-server/lib/xcat/plugins/esx.pm +++ b/xCAT-server/lib/xcat/plugins/esx.pm @@ -1651,7 +1651,7 @@ sub clonevms { my $masterref; if ($base) { #if base, we need to pull in the target datastores my $mastertab=xCAT::Table->new('vmmaster'); - $masterref=$mastertab->getAttribs(name=>$base); + $masterref=$mastertab->getAttribs({name=>$base},[qw/storage os arch profile storagemodel nics/]); unless ($masterref) { foreach my $node (@$nodes) { xCAT::SvrUtils::sendmsg([1,"Cannot find master $base in vmmaster table"], $output_handler,$node);