From c6a826f6c51d70e5dc3746ebdaa33d6539841365 Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 29 Sep 2008 17:25:16 +0000 Subject: [PATCH] No setup for AIX git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2260 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/TFTPsn.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/TFTPsn.pm b/xCAT-server/lib/xcat/plugins/TFTPsn.pm index c1e1b52ae..a14b640ec 100644 --- a/xCAT-server/lib/xcat/plugins/TFTPsn.pm +++ b/xCAT-server/lib/xcat/plugins/TFTPsn.pm @@ -19,7 +19,7 @@ use Getopt::Long; =head3 handled_commands -This runs on Service Node +This runs on Service Node ( only sets up for Linux) Checks servicenode table tfpserver attribute Call setup_TFTP (actually setting up atftp) @@ -33,6 +33,10 @@ sub handled_commands if ($ENV{'XCATBYPASS'}) { return 0; } + if (xCAT::Utils->isAIX()) { # do not run on AIX + return 0; + } + my $rc = 0;