From 7cf13128e63a23e9118fb172b5002d8b3de09eb6 Mon Sep 17 00:00:00 2001 From: sakolish Date: Mon, 3 Mar 2008 20:47:07 +0000 Subject: [PATCH] Return program exit code - Line #221 git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@651 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT-2.0/xCAT/PPCboot.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-xCAT-2.0/xCAT/PPCboot.pm b/perl-xCAT-2.0/xCAT/PPCboot.pm index be3ff7d13..655a7904a 100644 --- a/perl-xCAT-2.0/xCAT/PPCboot.pm +++ b/perl-xCAT-2.0/xCAT/PPCboot.pm @@ -218,7 +218,7 @@ sub ivm_rnetboot { # Get command exit code ####################################### my $Rc = ( $? ) ? $? >> 8 : SUCCESS; - return( [SUCCESS,$result] ); + return( [$Rc,$result] ); }