2007-10-26 22:44:33 +00:00
#!/usr/bin/env perl
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
2008-02-14 14:25:49 +00:00
# Used as a standard client cmd that can be used for many of the xcat cmds.
# It grabs the arguments, noderange, and stdin and then submits the request to
# xcatd and waits for responses. Most of the client/server communication is
# contained in Client.pm.
# To use this, sym link your cmd name to this script.
BEGIN { $::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : -d '/opt/xcat' ? '/opt/xcat' : '/usr'; }
2007-12-11 19:15:28 +00:00
use lib "$::XCATROOT/lib/perl";
2008-01-10 13:41:31 +00:00
use Cwd;
2008-02-14 14:25:49 +00:00
#use IO::Socket::SSL;
#use IO::Socket::INET;
2007-10-26 22:44:33 +00:00
use File::Basename;
2008-02-14 14:25:49 +00:00
#use Data::Dumper;
use xCAT::Client;
2007-10-26 22:44:33 +00:00
2008-02-14 14:25:49 +00:00
my $bname = basename($0);
2007-10-26 22:44:33 +00:00
my $cmdref;
2008-02-14 14:25:49 +00:00
if ($bname =~ /xcatclient/) { $cmdref->{command}->[0]=shift @ARGV; } # xcatclient was invoked directly and the 1st arg is cmd name that is used to locate the plugin
else { $cmdref->{command}->[0] = $bname; } # the cmd was sym linked to xcatclient
2008-01-10 13:41:31 +00:00
$cmdref->{cwd}->[0] = cwd();
2007-10-26 22:44:33 +00:00
if (-p STDIN) {
my $data;
2008-02-14 14:25:49 +00:00
while ( <STDIN> ) { $data.=$_; }
2007-10-26 22:44:33 +00:00
$cmdref->{stdin}->[0]=$data;
}
2008-02-14 14:25:49 +00:00
# Consider the 1st non-hyphen arg to be the noderange. All others (before and after) go on the arg list.
2007-10-26 22:44:33 +00:00
my $arg=shift(@ARGV);
while ($arg =~ /^-/) {
push (@{$cmdref->{arg}}, $arg);
$arg=shift(@ARGV);
}
2008-02-14 14:25:49 +00:00
if ($arg ne "NO_NODE_RANGE") {
2007-10-26 22:44:33 +00:00
$cmdref->{noderange}->[0]=$arg;
}
2008-02-14 14:25:49 +00:00
push (@{$cmdref->{arg}}, @ARGV);
2007-10-26 22:44:33 +00:00
2008-02-14 14:25:49 +00:00
xCAT::Client::submit_request($cmdref,\&xCAT::Client::handle_response);
exit $xCAT::Client::EXITCODE;