X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=0fbf339a60086990e7082937e0ac15b0a736fa5a;hp=cdbb3e83fffcca1473626a9a8599afa09468c39a;hb=e2a98b24af66246e1a679d4aa4c38a16f0215c72;hpb=d33e012e1a3388b32fe53e7faf1ac45a663917af diff --git a/grml2usb b/grml2usb index cdbb3e8..0fbf339 100755 --- a/grml2usb +++ b/grml2usb @@ -5,7 +5,7 @@ grml2usb ~~~~~~~~ -This script installs a grml system (either a running system or ISO[s]) to a USB device +This script installs a Grml system (either a running system or ISO[s]) to a USB device :copyright: (c) 2009, 2010, 2011 by Michael Prokop :license: GPL v2 or any later version @@ -1496,7 +1496,7 @@ def install(image, device): if options.force or os.path.exists(os.path.join(image, 'live')): logging.info("Using %s as install base", image) else: - q = raw_input("%s does not look like a grml system. " + q = raw_input("%s does not look like a Grml system. " "Do you really want to use this image? y/N " % image) if q.lower() == 'y': logging.info("Using %s as install base", image) @@ -1525,7 +1525,7 @@ def install(image, device): def install_grml(mountpoint, device): - """Main logic for copying files of the currently running grml system. + """Main logic for copying files of the currently running Grml system. @mountpoint: directory where currently running live system resides (usually /lib/live/mount/medium) @device: partition where the specified ISO should be installed to""" @@ -1816,7 +1816,7 @@ def main(): logging.info("Note: you can boot flavour %s using '%s' on the commandline.", flavour, flavour) # finally be polite :) - logging.info("Finished execution of grml2usb (%s). Have fun with your grml system.", PROG_VERSION) + logging.info("Finished execution of grml2usb (%s). Have fun with your Grml system.", PROG_VERSION) except Exception, error: logging.critical("Fatal: %s", str(error))