From 0dcd6cc5c0c921d5a72e71684d9e4dbfd50579a0 Mon Sep 17 00:00:00 2001 From: Mark Gurevich Date: Tue, 15 Aug 2017 13:13:06 -0400 Subject: [PATCH] Message changed per suggestion --- xCAT-server/lib/xcat/plugins/openbmc.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/openbmc.pm b/xCAT-server/lib/xcat/plugins/openbmc.pm index 8aa8e5814..24a957b35 100644 --- a/xCAT-server/lib/xcat/plugins/openbmc.pm +++ b/xCAT-server/lib/xcat/plugins/openbmc.pm @@ -1877,11 +1877,12 @@ sub rflash_response { my $h = from_json($curl_login_result); # convert command output to hash if ($h->{message} eq $::RESPONSE_OK) { # Login successfull, upload the file + xCAT::SvrUtils::sendmsg("Uploading $::UPLOAD_FILE ...", $callback, $node); my $curl_upload_result = `$curl_upload_cmd`; $h = from_json($curl_upload_result); # convert command output to hash if ($h->{message} eq $::RESPONSE_OK) { # Upload successfull - xCAT::SvrUtils::sendmsg("Update file $::UPLOAD_FILE successfully uploaded", $callback, $node); + xCAT::SvrUtils::sendmsg("Successful, use -l option to list.", $callback, $node); # Try to logoff, no need to check result, as there is nothing else to do if failure my $curl_logout_result = `$curl_logout_cmd`; }