]> git.decadent.org.uk Git - dak.git/blobdiff - config/debian/cron.daily
cron.daily: automatically bzip2 old backups
[dak.git] / config / debian / cron.daily
index 6d115cbeffa92e04e69ad298d149f7b5fc9c4b0d..059020eb8d521c6c0048876ed3d0396e8be01e7c 100755 (executable)
@@ -199,4 +199,16 @@ TS=$(($TS+1)); echo Archive maintenance timestamp $TS: $(date +%X)
 cd $configdir
 apt-ftparchive -q clean apt.conf
 
+TS=$(($TS+1)); echo Archive maintenance timestamp $TS: $(date +%X)
+
+# Compress psql backups older than a month, but no more than 20 of them
+
+(cd $base/backup/
+ find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' -mtime +30 | 
+   sort | head -n20 | while read dumpname; do
+     echo "Compressing $dumpname"
+     bzip2 -9 "$dumpname"
+   done
+)
+
 ################################################################################