]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
dracut-functions.sh: don't ask question on gzip uncompress
authorHarald Hoyer <harald@redhat.com>
Tue, 16 Oct 2012 07:36:28 +0000 (09:36 +0200)
committerHarald Hoyer <harald@redhat.com>
Tue, 16 Oct 2012 07:37:49 +0000 (09:37 +0200)
dracut-functions.sh

index 363cdb967adbc7c48a2e84cce314083cd32cda50..f1c797c283cbda7d28d2bb5eec40af345fdc6263 100755 (executable)
@@ -1006,7 +1006,7 @@ inst_decompress() {
     for _src in $@
     do
         case ${_src} in
-            *.gz) _cmd='gzip -d' ;;
+            *.gz) _cmd='gzip -f -d' ;;
             *.bz2) _cmd='bzip2 -d' ;;
             *) return 1 ;;
         esac