From: Michael Tremer Date: Sat, 18 Oct 2008 08:50:06 +0000 (+0000) Subject: Don't print the progress bar. X-Git-Tag: v3.0-alpha1~540 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=810f47be6fa7cc292bf5b6988ffb4d3763aa98be;p=ipfire-3.x.git Don't print the progress bar. --- diff --git a/src/pomona/pakfireinstall.py b/src/pomona/pakfireinstall.py index e9be36cc3..ff5bdca30 100644 --- a/src/pomona/pakfireinstall.py +++ b/src/pomona/pakfireinstall.py @@ -123,7 +123,7 @@ class PomonaPakfire: filesize = int(os.path.getsize(filename)) log.info("Source file %s has size of %dKB" % (filename, filesize / 1024,)) - command = "unsquashfs -i -f -d %s %s 2>/dev/tty5" % (HARDDISK_PATH, filename,) + command = "unsquashfs -n -i -f -d %s %s 2>/dev/tty5" % (HARDDISK_PATH, filename,) extractor = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE,