fsck forced by the length of time since the last fsck, returns 256. this is
[bootmanager.git] / source / utils.py
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