From 6572e3f59581175945027be9c8a646dc76dd0231 Mon Sep 17 00:00:00 2001 From: XuWei Date: Thu, 21 Sep 2017 03:03:19 -0400 Subject: [PATCH] Fix issue 3979, do not set next status if command is getopenbmccons --- xCAT-server/lib/xcat/plugins/openbmc.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xCAT-server/lib/xcat/plugins/openbmc.pm b/xCAT-server/lib/xcat/plugins/openbmc.pm index 7c2ccca17..b13333755 100644 --- a/xCAT-server/lib/xcat/plugins/openbmc.pm +++ b/xCAT-server/lib/xcat/plugins/openbmc.pm @@ -666,6 +666,8 @@ sub parse_command_status { my $subcommands = shift; my $subcommand; + return if ($command eq "getopenbmccons"); + if ($$subcommands[-1] and $$subcommands[-1] =~ /V|verbose/) { $::VERBOSE = 1; pop(@$subcommands);