5cb435ee90
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@674 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
48 lines
1.4 KiB
Perl
Executable File
48 lines
1.4 KiB
Perl
Executable File
#!/usr/bin/env perl
|
|
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
BEGIN
|
|
{
|
|
$::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : '/opt/xcat';
|
|
}
|
|
$::XCATROOT = $ENV{'XCATROOT'} ? $ENV{'XCATROOT'} : '/opt/xcat';
|
|
my $xcatcfg;
|
|
open($xcatcfg,"<","/etc/sysconfig/xcat");
|
|
while (<$xcatcfg>) {
|
|
if (/^\s*XCATCFG/) {
|
|
(my $jnk,$ENV{XCATCFG})=split /=/,$_,2;
|
|
chomp($ENV{XCATCFG});
|
|
$ENV{XCATCFG} =~ s/^'//;
|
|
$ENV{XCATCFG} =~ s/'$//;
|
|
last;
|
|
}
|
|
}
|
|
close($xcatcfg);
|
|
use lib "$::XCATROOT/lib/perl";
|
|
use xCAT::Table;
|
|
my $dba;
|
|
my $ipmitab = xCAT::Table->new('ipmi');
|
|
unless ($ipmitab) { sleep 5; die "Unable to open IPMI table"; }
|
|
my $passtab = xCAT::Table->new('passwd');
|
|
my $username = 'USERID';
|
|
my $password = 'PASSW0RD';
|
|
my $node = $ARGV[0];
|
|
my $bmc = $node;
|
|
if ($passtab) {
|
|
($dba) = $passtab->getAttribs({key=>'ipmi'},qw(username password));
|
|
if ($dba) {
|
|
if ($dba->{username}) { $username = $dba->{username}; }
|
|
if ($dba->{password}) { $password = $dba->{password}; }
|
|
}
|
|
}
|
|
|
|
$dba = $ipmitab->getNodeAttribs($ARGV[0],[qw(bmc username password)]);
|
|
if ($dba) {
|
|
if ($dba->{bmc}) { $bmc = $dba->{bmc}; }
|
|
if ($dba->{username}) { $username = $dba->{username}; }
|
|
if ($dba->{password}) { $password = $dba->{password}; }
|
|
}
|
|
system "ipmitool -I lanplus -U $username -P $password -H $bmc sol deactivate"; #Stop any active session
|
|
exec "ipmitool -I lanplus -U $username -P $password -H $bmc sol activate";
|
|
|
|
|