From: Michael Tremer Date: Tue, 23 Dec 2008 14:18:40 +0000 (+0100) Subject: Revert "Be verbose when unsquashing our root filesystem." X-Git-Tag: v3.0-alpha1~338 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0789a4d41bff251fc5baac8437a91ca2ed930259;p=ipfire-3.x.git Revert "Be verbose when unsquashing our root filesystem." This reverts commit 3a30b7425ab582b265ed7d1ee091d45b8a5e5d5a. --- diff --git a/src/pomona/pakfireinstall.py b/src/pomona/pakfireinstall.py index 875a1a4d1..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 -n -i -f -d %s %s >/dev/tty5 2>&1" % (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,