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
This commit is contained in:
jbjohnso 2012-05-18 16:54:47 +00:00
parent 0a4caa922b
commit d69a39d698

View File

@ -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,
)
);
}