]> git.decadent.org.uk Git - dak.git/commitdiff
Compress all pgsql backups
authorJoerg Jaspert <joerg@debian.org>
Sat, 14 Jun 2008 15:02:25 +0000 (17:02 +0200)
committerJoerg Jaspert <joerg@debian.org>
Sat, 14 Jun 2008 15:02:25 +0000 (17:02 +0200)
ChangeLog
config/debian/cron.dinstall

index 620e8c0f6f095b800fdcfd1a72588f918ae0c468..429835b52a7057a546839c50155b403311cc1d6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-06-14  Joerg Jaspert  <joerg@debian.org>
+
+       * config/debian/cron.dinstall (POSTDUMP): Compress all
+       uncompressed psql backups
+
 2008-06-08  Joerg Jaspert  <joerg@debian.org>
 
        * dak/process_unchecked.py (check_urgency): Lowercase urgency
index 6256e651f4596a07c029b83b4c9d7733d38cfc9f..95f5427b944bf11fadb8a71dbee0a6a8c355f950 100755 (executable)
@@ -247,14 +247,14 @@ apt-ftparchive -q clean apt.conf
 
 ts
 
-# Compress psql backups older than a week, but no more than 20 of them
+# Compress psql backups
 echo "Compress old psql backups"
 (cd $base/backup/
find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' -mtime +7 | 
-   sort | head -n20 | while read dumpname; do
-     echo "Compressing $dumpname"
-     bzip2 -9 "$dumpname"
-   done
      find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' | 
+       while read dumpname; do
+               echo "Compressing $dumpname"
+               bzip2 -9 "$dumpname"
+       done
 )
 
 ts