From 9cd0c90e7263d707fb24e02b049fab69a8aba238 Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Thu, 19 Apr 2012 07:03:20 +0000 Subject: [PATCH] fix bug 3511324: rpower got uncorrect output git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12269 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/FSPUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT/xCAT/FSPUtils.pm b/perl-xCAT/xCAT/FSPUtils.pm index df6c2c15e..f84ba2c5d 100644 --- a/perl-xCAT/xCAT/FSPUtils.pm +++ b/perl-xCAT/xCAT/FSPUtils.pm @@ -265,7 +265,7 @@ sub fsp_state_action { ################# #$outhash{ $node_name } = $res; if( @res ) { - $res[0] =~ s/$node_name: //; + $res[0] =~ s/$node_name: //g; } return( [$Rc,@res] ); }