2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-09-07 10:48:24 +00:00

Correct wrong FPC abort code

This commit is contained in:
Jarrod Johnson
2017-03-31 11:29:11 -04:00
parent c24687a23e
commit 4978055cd5

View File

@@ -2075,7 +2075,7 @@ sub fpc_update_aborted {
my $sessdata = $_[1];
if ($_[0]->{code}) {
xCAT::SvrUtils::sendmsg("Unexpected condition, restarting device", $callback, $sessdata->{node}, %allerrornodes);
$sessdata->{ipmisession}->subcmd(netfn => 0x2e, command => 0xcc, data => [0x2e, 0xcc, 0x5e, 0x2b, 0, 6, 0x43, 0], callback => \&fpc_update_aborted, callback_args => $sessdata);
$sessdata->{ipmisession}->subcmd(netfn => 0x2e, command => 0xcc, data => [0x5e, 0x2b, 0, 6, 0x43, 0], callback => \&fpc_update_aborted, callback_args => $sessdata);
}
check_rsp_errors(@_);
exit 1;