From 67342d4e5d99efe60439cb804cabf5fc1d0734d4 Mon Sep 17 00:00:00 2001 From: linggao Date: Fri, 11 Feb 2011 21:49:18 +0000 Subject: [PATCH] added exit code for prescripts git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8831 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/prescripts.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/prescripts.pm b/xCAT-server/lib/xcat/plugins/prescripts.pm index a1adae139..cebcefb0b 100644 --- a/xCAT-server/lib/xcat/plugins/prescripts.pm +++ b/xCAT-server/lib/xcat/plugins/prescripts.pm @@ -187,11 +187,12 @@ sub runbeginpre undef $SIG{CHLD}; #pass all the nodes to the script, only invoke the script once my $ret=`NODES=$runnodes_s ACTION=$action $installdir/prescripts/$s 2>&1`; - my $err_code=$?; + my $err_code=$?/256; if ($err_code != 0) { my $rsp = {}; $rsp->{error}->[0]="$localhostname: $s: return code=$err_code. Error message=$ret"; $callback->($rsp); + if ($err_code > 1) { return $err_code; } } else { if ($ret) { my $rsp = {}; @@ -250,11 +251,12 @@ sub runendpre } else { undef $SIG{CHLD}; my $ret=`NODES=$runnodes_s ACTION=$action $installdir/prescripts/$s 2>&1`; - my $err_code=$?; + my $err_code=$?/256; if ($err_code != 0) { my $rsp = {}; $rsp->{error}->[0]="$localhostname: $s: return code=$err_code. Error message=$ret"; $callback->($rsp); + if ($err_code > 1) { return $err_code; } } else { if ($ret) { my $rsp = {};