From 044aab2789521290931540490a370965fe3ae730 Mon Sep 17 00:00:00 2001 From: jjhua Date: Thu, 5 Aug 2010 06:37:39 +0000 Subject: [PATCH] remove some output git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6984 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/perl/xCAT/PPC.pm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/xCAT-server/lib/perl/xCAT/PPC.pm b/xCAT-server/lib/perl/xCAT/PPC.pm index f13119216..1135bb39a 100644 --- a/xCAT-server/lib/perl/xCAT/PPC.pm +++ b/xCAT-server/lib/perl/xCAT/PPC.pm @@ -1170,7 +1170,7 @@ sub invoke_cmd { #send_msg( $request, 1, $exp[0] ); my %output; $output{node}->[0]->{name}->[0] = $host; - $output{node}->[0]->{data}->[0]->{contents}->[0] = "(trying ASM )$exp[0]"; + $output{node}->[0]->{data}->[0]->{contents}->[0] = "$exp[0]"; $output{errorcode} = 1; push @outhash, \%output; my $out = $request->{pipe}; @@ -1278,9 +1278,11 @@ sub invoke_cmd { $output{errorcode} = @$_[2]; if($output{errorcode} != 0) { if($request->{fsp_api} == 1) { - $output{node}->[0]->{data}->[0]->{contents}->[0] = "(trying fsp-api)@$_[1]"; + #$output{node}->[0]->{data}->[0]->{contents}->[0] = "(trying fsp-api)@$_[1]"; + $output{node}->[0]->{data}->[0]->{contents}->[0] = "@$_[1]"; } else { - $output{node}->[0]->{data}->[0]->{contents}->[0] = "(trying HMC )@$_[1]"; + #$output{node}->[0]->{data}->[0]->{contents}->[0] = "(trying HMC )@$_[1]"; + $output{node}->[0]->{data}->[0]->{contents}->[0] = "@$_[1]"; } } else { $output{node}->[0]->{data}->[0]->{contents}->[0] = @$_[1];