diff --git a/xCAT-server/lib/xcat/plugins/openbmc.pm b/xCAT-server/lib/xcat/plugins/openbmc.pm index d3503e4ea..9b1ebd55b 100644 --- a/xCAT-server/lib/xcat/plugins/openbmc.pm +++ b/xCAT-server/lib/xcat/plugins/openbmc.pm @@ -874,7 +874,7 @@ sub parse_node_info { if ($openbmc_hash->{$node}->[0]->{'bmc'}) { $node_info{$node}{bmc} = $openbmc_hash->{$node}->[0]->{'bmc'}; } else { - xCAT::SvrUtils::sendmsg("Unable to get attribute bmc", $callback, $node); + xCAT::SvrUtils::sendmsg("Error: Unable to get attribute bmc", $callback, $node); $rst = 1; next; } @@ -884,7 +884,7 @@ sub parse_node_info { } elsif ($passwd_hash and $passwd_hash->{username}) { $node_info{$node}{username} = $passwd_hash->{username}; } else { - xCAT::SvrUtils::sendmsg("Unable to get attribute username", $callback, $node); + xCAT::SvrUtils::sendmsg("Error: Unable to get attribute username", $callback, $node); delete $node_info{$node}; $rst = 1; next; @@ -895,7 +895,7 @@ sub parse_node_info { } elsif ($passwd_hash and $passwd_hash->{password}) { $node_info{$node}{password} = $passwd_hash->{password}; } else { - xCAT::SvrUtils::sendmsg("Unable to get attribute password", $callback, $node); + xCAT::SvrUtils::sendmsg("Error: Unable to get attribute password", $callback, $node); delete $node_info{$node}; $rst = 1; next; @@ -903,7 +903,7 @@ sub parse_node_info { $node_info{$node}{cur_status} = "LOGIN_REQUEST"; } else { - xCAT::SvrUtils::sendmsg("Unable to get information from openbmc table", $callback, $node); + xCAT::SvrUtils::sendmsg("Error: Unable to get information from openbmc table", $callback, $node); $rst = 1; next; }