fix bug 3552 rpower/rinv getting incorrect password with Blacktip flex blade check password tables
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@16183 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
parent
421a20be05
commit
02aa34a40e
@ -4658,7 +4658,7 @@ sub clicmds {
|
||||
if((/^updateBMC$/ or ($cmm_modified)) and !($bmc_modified)) {
|
||||
unless (defined($handled{updateBMC}) and $handled{updateBMC} =~ /(0|n|no)/i) {
|
||||
if (defined($handled{updateBMC}) and !$cmm_modified) {
|
||||
$result = passwd($t, $mpa, $1, "=".$handled{USERID}, $promote_pass, $mm);
|
||||
$result = passwd($t, $mpa, "USERID", "=".$handled{USERID}, $promote_pass, $mm);
|
||||
$cmm_modified = 1;
|
||||
}
|
||||
verbose_message("start update password for all BMCs.");
|
||||
@ -4903,8 +4903,8 @@ sub updateBMC {
|
||||
my @mpents = $mptab->getAllNodeAttribs(['node','mpa','id']);
|
||||
foreach (@mpents) {
|
||||
my $node = $_->{node};
|
||||
my $arch = $nttab->getNodeAttribs($node, ['arch']);
|
||||
if ($_->{mpa} and $_->{id} and defined($arch) and $arch->{arch} !~ /ppc/) {
|
||||
my $nodetype = $nttab->getNodeAttribs($node, ['nodetype']);
|
||||
if ($_->{mpa} and ($_->{mpa} eq $mpa) and $_->{id} and defined($nodetype) and $nodetype->{nodetype} =~ /mp/) {
|
||||
xCAT::IMMUtils::setupIMM($node,skipbmcidcheck=>1,skipnetconfig=>1,cliusername=>$user,clipassword=>$pass,callback=>$CALLBACK);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user