X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=8560f34396123529e2b690958e300ecf4ab52a94;hp=414b9c5af49f4484f6f22c7a68861a2273a7957a;hb=3836a7165cd7f3e82ffca1b841fca16eb789a6ce;hpb=779a8334c32bb2389e2cffb32a3fefeb9b3f415c diff --git a/grml2usb b/grml2usb index 414b9c5..8560f34 100755 --- a/grml2usb +++ b/grml2usb @@ -699,18 +699,12 @@ def install_bootloader(device): # by default we use grub, so install syslinux only on request if options.grub: - if not which("grub-install"): - logging.critical("Fatal: grub-install not available (please install the " - + "grub package or use the --syslinux option)") + try: + install_grub(device) + except CriticalException, error: + logging.critical("Fatal: %s", error) cleanup() sys.exit(1) - else: - try: - install_grub(device) - except CriticalException, error: - logging.critical("Fatal: %s", error) - cleanup() - sys.exit(1) else: try: install_syslinux(device) @@ -2057,7 +2051,6 @@ def main(): if options.dryrun: logging.info("Running in simulation mode as requested via option dry-run.") - # specified arguments device = args[len(args) - 1] isos = args[0:len(args) - 1] @@ -2071,6 +2064,18 @@ def main(): logging.critical("Fatal: installation on raw device not supported. (BIOS won't support it.)") sys.exit(1) + if options.grub: + if not which("grub-install"): + logging.critical("Fatal: grub-install not available (please install the " + + "grub package or drop the --grub option)") + sys.exit(1) + + if options.syslinux: + if not which("syslinux"): + logging.critical("Fatal: syslinux not available (please install the " + + "syslinux package or use the --grub option)") + sys.exit(1) + if not which("rsync"): logging.critical("Fatal: rsync not available, can not continue - sorry.") sys.exit(1)