From af1bf635a90d9f8e0d9f1be352ac1a86f17705c4 Mon Sep 17 00:00:00 2001 From: Victor Hu Date: Wed, 20 Dec 2017 10:48:22 -0500 Subject: [PATCH] Space out the heading a little more for rvitals led --- xCAT-server/lib/xcat/plugins/openbmc.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/openbmc.pm b/xCAT-server/lib/xcat/plugins/openbmc.pm index 854533a65..5bdb27db6 100644 --- a/xCAT-server/lib/xcat/plugins/openbmc.pm +++ b/xCAT-server/lib/xcat/plugins/openbmc.pm @@ -3703,15 +3703,15 @@ sub rvitals_response { } if ($node_info{$node}{cur_status} =~ "RVITALS_LEDS_RESPONSE") { - $content_info = "Front . . : Power:$front_power Fault:$front_fault Identify:$front_id"; + $content_info = "Front . . . . . : Power:$front_power Fault:$front_fault Identify:$front_id"; push (@sorted_output, $content_info); - $content_info = "Rear. . . : Power:$rear_power Fault:$rear_fault Identify:$rear_id"; + $content_info = "Rear . . . . . : Power:$rear_power Fault:$rear_fault Identify:$rear_id"; push (@sorted_output, $content_info); # Fans if ($f0 =~ "Off" and $f1 =~ "Off" and $f2 eq "Off" and $f3 eq "Off") { - $content_info = "Front Fans: No LEDs On"; + $content_info = "Front Fans . . : No LEDs On"; } else { - $content_info = "Front Fans: fan0:$f0 fan1:$f1 fan2:$f2 fan3:$f3"; + $content_info = "Front Fans . . : fan0:$f0 fan1:$f1 fan2:$f2 fan3:$f3"; } push (@sorted_output, $content_info); }