Add INUCLIENTS support for AIX.

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8877 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
sjing 2011-02-17 08:39:12 +00:00
parent 7703dd2164
commit 4c6fb11dab

View File

@ -321,7 +321,15 @@ if ($::INITIALINSTALL || $::FORCE || $::UPDATEINSTALL || $::genCredentials)
my $xcmd;
if ($::osname eq 'AIX')
{
$xcmd = "$::XCATROOT/sbin/restartxcatd";
if ($ENV{'INUCLIENTS'} == 1)
{
#Do nothing in not running system
}
else
{
$xcmd = "$::XCATROOT/sbin/restartxcatd";
}
}
else
{