From: S.Çağlar Onur Date: Wed, 28 Jul 2010 02:57:34 +0000 (-0400) Subject: revert cca3a2cd2096c0235dddb5982b1f05c8d4c7f916 as well X-Git-Tag: bootmanager-5.0-7~2 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=d51b20d124b862f74763281643e5084a222b6bb7 revert cca3a2cd2096c0235dddb5982b1f05c8d4c7f916 as well --- diff --git a/source/utils.py b/source/utils.py index 0ee2008..429038d 100644 --- a/source/utils.py +++ b/source/utils.py @@ -145,7 +145,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