From 4c6fb11dab01643df5248ac61553fc38e0b0f6ba Mon Sep 17 00:00:00 2001 From: sjing Date: Thu, 17 Feb 2011 08:39:12 +0000 Subject: [PATCH] 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 --- xCAT-server/sbin/xcatconfig | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/xCAT-server/sbin/xcatconfig b/xCAT-server/sbin/xcatconfig index 2f70359d2..9fef2d85b 100755 --- a/xCAT-server/sbin/xcatconfig +++ b/xCAT-server/sbin/xcatconfig @@ -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 {