Setting tag 4.3-13 (manually) with only changeset http://svn.planet-lab.org/changeset... BootManager-4.3-13
authorThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 22 Oct 2009 09:23:49 +0000 (09:23 +0000)
committerThierry Parmentelat <thierry.parmentelat@sophia.inria.fr>
Thu, 22 Oct 2009 09:23:49 +0000 (09:23 +0000)
bootmanager.spec
source/utils.py

index 5decaf5..071d0f9 100644 (file)
@@ -5,7 +5,7 @@
 
 %define name bootmanager
 %define version 4.3
-%define taglevel 12
+%define taglevel 13
 
 %define release %{taglevel}%{?pldistro:.%{pldistro}}%{?date:.%{date}}
 
index ebd5430..e111659 100644 (file)
@@ -142,7 +142,7 @@ def sysexec( cmd, log= None ):
             raise BootManagerException, "Interrupted by user"
 
     returncode= prog.wait()
-    if returncode != 0:
+    if returncode != 0 and returncode != 256:
         raise BootManagerException, "Running %s failed (rc=%d)" % (cmd,returncode)
 
     prog= None