From 7d1ac42dc692f9cfd6647048581b546b85fad636 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Tue, 27 Jul 2010 22:57:34 -0400 Subject: [PATCH] revert cca3a2cd2096c0235dddb5982b1f05c8d4c7f916 as well --- source/utils.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/source/utils.py b/source/utils.py index e111659..736dd22 100644 --- a/source/utils.py +++ b/source/utils.py @@ -142,7 +142,20 @@ def sysexec( cmd, log= None ): raise BootManagerException, "Interrupted by user" returncode= prog.wait() - if returncode != 0 and returncode != 256: + # revert http://git.planet-lab.org/?p=bootmanager.git;a=commitdiff;h=cca3a2cd2096c0235dddb5982b1f05c8d4c7f916 + # as 256 returned by Python + # + ## cat test.py + #import popen2 + # + #cmd = "false" + #prog = popen2.Popen4( cmd, 0 ) + #returncode = prog.wait() + #print returncode + # + ## python test.py + # 256 + if returncode != 0: raise BootManagerException, "Running %s failed (rc=%d)" % (cmd,returncode) prog= None -- 2.43.0