From: Joerg Jaspert Date: Sun, 31 May 2009 11:32:17 +0000 (+0200) Subject: force hardlink break X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=c63e71b31aeb14ee4f817e519fdcf243e2733504;p=dak.git force hardlink break Signed-off-by: Joerg Jaspert --- diff --git a/config/debian/cron.dinstall b/config/debian/cron.dinstall index 9a21ae8b..e61cc2e1 100755 --- a/config/debian/cron.dinstall +++ b/config/debian/cron.dinstall @@ -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 }