X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=fa820bfe484ed7c3635f67cfa5b079407027c915;hp=66ff2ee4cbc1569bc96b7e5565a0b180af46d774;hb=7cef7442a8c4e6d2203ee146cb21e43d50625448;hpb=26cf6332b95355d58220e8541cf8de896ce60c67 diff --git a/grml2usb b/grml2usb index 66ff2ee..fa820bf 100755 --- a/grml2usb +++ b/grml2usb @@ -663,6 +663,7 @@ def unmount(target, unmount_options): proc = subprocess.Popen(["umount"] + list(unmount_options) + [target]) proc.wait() if proc.returncode != 0: + logging.critical("Error executing umount") raise Exception("Error executing umount") else: logging.debug("unregister_mountpoint(%s)", target) @@ -1049,7 +1050,7 @@ def copy_bootloader_files(iso_mount, target, grml_flavour): logging.critical("Fatal: file default.cfg could not be found.") logging.critical("Note: this grml2usb version requires an ISO generated by grml-live >=0.9.24 ...") logging.critical(" ... either use grml releases >=2009.10 or switch to an older grml2usb version.") - raise + raise CriticalException("file default.cfg could not be found.") if not os.path.exists(iso_mount + '/boot/grub/footer.cfg'): logging.warning("Warning: Grml releases older than 2011.12 support only one flavour in grub.")