From d31918ad3511b993d45a29eca411963317851de0 Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 27 Oct 2008 15:04:48 +0000 Subject: [PATCH] conserver plugin does not support AIX, put in check git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2391 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/CONSsn.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/CONSsn.pm b/xCAT-server/lib/xcat/plugins/CONSsn.pm index d2dd152db..7426a543b 100644 --- a/xCAT-server/lib/xcat/plugins/CONSsn.pm +++ b/xCAT-server/lib/xcat/plugins/CONSsn.pm @@ -20,7 +20,7 @@ use Getopt::Long; #------------------------------------------------------- =head3 handled_commands - +Only for Linux now Check to see if on a Service Node Check database to see if this node is going to have Conserver setup should be always @@ -37,6 +37,9 @@ sub handled_commands if ($ENV{'XCATBYPASS'}) { return 0; } + if (xCAT::Utils->isAIX()) { # do not run on AIX + return 0; + } my $rc = 0; if (xCAT::Utils->isServiceNode())