2008-02-18 15:57:25 +00:00
|
|
|
#!/usr/bin/perl
|
2007-10-26 22:44:33 +00:00
|
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
2007-12-11 19:15:28 +00:00
|
|
|
BEGIN
|
|
|
|
{
|
2008-01-14 17:04:41 +00:00
|
|
|
$::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : -d '/opt/xcat' ? '/opt/xcat' : '/usr';
|
2007-12-11 19:15:28 +00:00
|
|
|
}
|
|
|
|
use lib "$::XCATROOT/lib/perl";
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
use File::Basename;
|
2007-11-26 19:59:04 +00:00
|
|
|
use xCAT::MsgUtils;
|
2008-02-21 21:10:35 +00:00
|
|
|
use xCAT::Client;
|
2007-10-26 22:44:33 +00:00
|
|
|
|
2008-09-10 14:32:19 +00:00
|
|
|
use Getopt::Std;
|
|
|
|
|
2007-10-26 22:44:33 +00:00
|
|
|
my $bname = basename($0);
|
|
|
|
|
|
|
|
#########################################
|
|
|
|
# Main
|
|
|
|
#
|
|
|
|
# xcatDBcmds
|
|
|
|
#
|
2007-11-26 19:59:04 +00:00
|
|
|
# Build hash and submit request
|
2007-10-26 22:44:33 +00:00
|
|
|
#
|
2008-09-10 14:32:19 +00:00
|
|
|
# Handles: mkdef, chdef, lsdef, rmdef, mknimimage, rmnimimage,
|
|
|
|
# nimnodeset, mkdsklsnode, rmdsklsnode, and xcat2nim commands
|
2007-10-26 22:44:33 +00:00
|
|
|
#
|
2007-11-26 19:59:04 +00:00
|
|
|
# Note: The subroutines that implement these commands
|
2008-02-18 20:44:29 +00:00
|
|
|
# are, for the most part, in:
|
|
|
|
# /opt/xcat/lib/perl/xCAT_plugin/DBobjectdefs.pm
|
|
|
|
# /opt/xcat/lib/perl/xCAT_plugin/xcat2nim.pm
|
2008-09-10 14:32:19 +00:00
|
|
|
# /opt/xcat/lib/perl/xCAT_plugin/aixinstall.pm
|
2008-02-21 21:10:35 +00:00
|
|
|
# /opt/xcat/lib/perl/xCAT/DBobjUtils.pm
|
2007-10-26 22:44:33 +00:00
|
|
|
#
|
|
|
|
#########################################
|
|
|
|
|
|
|
|
my $cmdref;
|
|
|
|
|
|
|
|
# set the command name to pass to the plugin
|
|
|
|
if ($bname =~ /xcatDBcmds/)
|
|
|
|
{
|
|
|
|
$cmdref->{command}->[0] = shift @ARGV;
|
|
|
|
}
|
|
|
|
elsif ($bname =~ /^(.*$)/)
|
|
|
|
{
|
|
|
|
$cmdref->{command}->[0] = $1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
printf("Bad usage\n");
|
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
2007-11-26 19:59:04 +00:00
|
|
|
# get info from files piped in as stdin
|
|
|
|
if (-p STDIN) {
|
|
|
|
my $data;
|
|
|
|
while ( <STDIN> ) {
|
|
|
|
$data.=$_;
|
|
|
|
}
|
|
|
|
$cmdref->{stdin}->[0]=$data;
|
|
|
|
}
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
# add all the cmd line args to the hash - to pass to the plugin subroutine
|
2008-09-10 14:32:19 +00:00
|
|
|
foreach my $a (@ARGV)
|
2007-10-26 22:44:33 +00:00
|
|
|
{
|
2008-09-10 14:32:19 +00:00
|
|
|
push(@{$cmdref->{arg}}, $a);
|
|
|
|
}
|
|
|
|
|
|
|
|
# For some commands we need to set the noderange value
|
|
|
|
# - don't want to depend on the order of args so need to pick
|
|
|
|
# the operand that doesn't have an "=" sign ( ie. attr=val format)
|
|
|
|
my @checkcmds = ("nimnodeset", "mkdsklsnode", "rmdsklsnode", "xcat2nim");
|
|
|
|
if (grep(/^$bname$/, @checkcmds) ) {
|
|
|
|
# strip off all options
|
|
|
|
getopts('ab:fh?i:l:urs:m:no:t:vV');
|
|
|
|
# check the operands for a noderange
|
|
|
|
while (my $a = shift(@ARGV)) {
|
|
|
|
if (!($a =~ /=/)) {
|
|
|
|
$cmdref->{noderange}->[0]=$a;
|
|
|
|
}
|
|
|
|
}
|
2007-10-26 22:44:33 +00:00
|
|
|
}
|
|
|
|
|
2008-02-18 15:57:25 +00:00
|
|
|
xCAT::Client::submit_request($cmdref,\&xCAT::Client::handle_response);
|
|
|
|
exit $xCAT::Client::EXITCODE;
|