defect 3539473: disable the xcatdebug to be run on aix

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13803 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
daniceexi 2012-09-14 13:24:12 +00:00
parent dded0c9f2d
commit d6ee2b1072
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
=head1 NAME
B<xcatdebug> - Enable or disable the trace facilities for xCAT.
B<xcatdebug> - Enable or disable the trace facilities for xCAT. (Only supports Linux Operating System)
B<xcatdebug> { [B<-f enable|disable> [B<-c configuration file | subroutine list>]] | [ B<-d enable |disable>]}

View File

@ -49,6 +49,11 @@ if (
exit 1;
}
if ($^O !~ /^linux/i) {
print "xcatdebug command only supports Linux Operating System.\n";
exit 1;
}
if (!($::FUNC || $::DEBUG)) {
print "$usage";
exit 1;