]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Don't print the progress bar.
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 18 Oct 2008 08:50:06 +0000 (08:50 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 18 Oct 2008 08:50:06 +0000 (08:50 +0000)
src/pomona/pakfireinstall.py

index e9be36cc3d0734f6949cc1f87b27b13c6be2320e..ff5bdca3002f37314a558f00f4ef3957c57eb39d 100644 (file)
@@ -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,