]> git.decadent.org.uk Git - dak.git/commitdiff
force hardlink break
authorJoerg Jaspert <joerg@debian.org>
Sun, 31 May 2009 11:32:17 +0000 (13:32 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sun, 31 May 2009 11:32:17 +0000 (13:32 +0200)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
config/debian/cron.dinstall

index 9a21ae8bc52e85d5ed11984e36038ce9511c93b8..e61cc2e19dc917182be5b225542ba9b017ef561d 100755 (executable)
@@ -361,12 +361,12 @@ function compress() {
     find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' -mmin +720 |
     while read dumpname; do
         echo "Compressing $dumpname"
-        bzip2 -9v "$dumpname"
+        bzip2 -9fv "$dumpname"
     done
     find -maxdepth 1 -mindepth 1 -type f -name "dumpall_*" \! -name '*.bz2' \! -name '*.gz' -mmin +720 |
     while read dumpname; do
         echo "Compressing $dumpname"
-        bzip2 -9v "$dumpname"
+        bzip2 -9fv "$dumpname"
     done
     finddup -l -d $base/backup
 }