3089578: InstUtils::dolitesetup, set return code to 2 for normal shared-root case

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7884 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
daniceexi 2010-10-19 12:38:56 +00:00
parent 793f736a83
commit e6e500e0e0

View File

@ -966,7 +966,15 @@ sub dolitesetup
# if there is no statelite info then just return
if (!$foundstatelite) {
return 1;
if ($::VERBOSE)
{
my $rsp;
push @{$rsp->{data}}, "Please update statlite,litefile,litetree tables if you want to use AIX statelite support.\n";
xCAT::MsgUtils->message("I", $rsp, $callback);
}
return 2;
}
#