]> git.decadent.org.uk Git - dak.git/commitdiff
cron.daily: automatically bzip2 old backups
authorAnthony Towns <aj@azure.humbug.org.au>
Wed, 5 Dec 2007 07:15:44 +0000 (07:15 +0000)
committerAnthony Towns <aj@azure.humbug.org.au>
Wed, 5 Dec 2007 07:15:44 +0000 (07:15 +0000)
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
+)
+
 ################################################################################