From d69a39d698032e28a440a266617b60ac4258fc03 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 18 May 2012 16:54:47 +0000 Subject: [PATCH] Few more fixes for esxi git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12802 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/esx.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/esx.pm b/xCAT-server/lib/xcat/plugins/esx.pm index 3436e327d..e5bf1b1be 100644 --- a/xCAT-server/lib/xcat/plugins/esx.pm +++ b/xCAT-server/lib/xcat/plugins/esx.pm @@ -2348,7 +2348,7 @@ sub make_customization_spec { my $fullname="Unspecified User"; my $orgName="Unspecified Organization"; if ($::XCATSITEVALS{winfullname}) { $fullname = $::XCATSITEVALS{winfullname}; } - if ($::XCATSITEVALS{winorgname}) { $orgname = $::XCATSITEVALS{winorgname}; } + if ($::XCATSITEVALS{winorgname}) { $orgName = $::XCATSITEVALS{winorgname}; } my @runonce=(); #to be read in from postscripts table $wintimezone=xCAT::TZUtils::get_wintimezonenum(); my $ptab=xCAT::Table->new('postscripts',-create=>0); @@ -2375,7 +2375,8 @@ sub make_customization_spec { if (scalar @runonce) { #skip section if no postscripts or postbootscripts %runonce=( guiRunOnce=>CustomizationGuiRunOnce->new( - commandList=>\@runonce, + commandList=>\@runonce, + ) ); }