From 4978055cd59a4d76bf47a414392e3f47d2f712e2 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 31 Mar 2017 11:29:11 -0400 Subject: [PATCH] Correct wrong FPC abort code --- xCAT-server/lib/xcat/plugins/ipmi.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/ipmi.pm b/xCAT-server/lib/xcat/plugins/ipmi.pm index 47d9d68c4..53b869cce 100644 --- a/xCAT-server/lib/xcat/plugins/ipmi.pm +++ b/xCAT-server/lib/xcat/plugins/ipmi.pm @@ -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;