X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fmaildir;h=522bf315028d6c23ba3bf3d424dd42bf66d886ab;hb=3158de11b903c2e7aa5404a5256c874c7593f797;hp=c07cd7e3a68d5ef0af603e37d731eda9ccd414bb;hpb=6dc566098abcf32b3bdac4ea820561f7668c7305;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/maildir b/handlers/maildir index c07cd7e..522bf31 100644 --- a/handlers/maildir +++ b/handlers/maildir @@ -1,12 +1,18 @@ -#!/usr/bin/php4 -q - $tmp1 - ssh -p $destport $desthost 'ls -1 '$destdir/maildir/$i' | sort > $tmp2 + ssh -p $destport $desthost ls -1 '$destdir/maildir/$i' | sort > $tmp2 for deluser in `join -v 2 $tmp1 $tmp2`; do cmd="ssh -p $destport $desthost rm -vr '$destdir/maildir/$i/$deluser/'" debug $cmd @@ -101,27 +120,111 @@ function do_remove() { rm $tmp2 } +function do_rotate() { + backuproot=$destdir + + ssh -T -o PasswordAuthentication=no $desthost -l $destuser < 0; i-- )); do + if [ -d \$dir.\$i ]; then + if [ -f \$dir.\$i/rotated ]; then + rotated=\`tail -1 \$dir.\$i/rotated\` + else + rotated=0 + fi + cutoff_time=\$(( now - (seconds*i) )) + if [ \$rotated -lt \$cutoff_time ]; then + next=\$(( i + 1 )) + if [ ! -d \$dir.\$next ]; then + echo "mv \$dir.\$i \$dir.\$next" + mv \$dir.\$i \$dir.\$next + date +%c%n%s > \$dir.\$next/rotated + else + echo "Info: skipping rotation of \$dir.\$i because \$dir.\$next already exists." + fi + else + echo "Info: skipping rotation of \$dir.\$i because it was rotated" \$(( (now-rotated)/86400)) "days ago ("\$(( (now-cutoff_time)/86400))" needed)." + fi + fi + done + done + + max=\$((keepdaily+1)) + if [ \( \$keepweekly -gt 0 -a -d $backuproot/daily.\$max \) -a ! -d $backuproot/weekly.1 ]; then + echo mv $backuproot/daily.\$max $backuproot/weekly.1 + mv $backuproot/daily.\$max $backuproot/weekly.1 + date +%c%n%s > $backuproot/weekly.1/rotated + fi + + max=\$((keepweekly+1)) + if [ \( \$keepmonthly -gt 0 -a -d $backuproot/weekly.\$max \) -a ! -d $backuproot/monthly.1 ]; then + echo mv $backuproot/weekly.\$max $backuproot/monthly.1 + mv $backuproot/weekly.\$max $backuproot/monthly.1 + date +%c%n%s > $backuproot/monthly.1/rotated + fi + + for rottype in daily weekly monthly; do + max=\$((keep\${rottype}+1)) + dir="$backuproot/\$rottype" + oldest=\`ls -d \$dir.* | sed 's/^.*\.//' | sort -n | tail -1\` + [ "\$oldest" == "" ] && oldest=0 + # if we've rotated the last backup off the stack, remove it. + for (( i=\$oldest; i >= \$max; i-- )); do + if [ -d \$dir.\$i ]; then + echo "Info: removing \$dir.\$i" + rm -rf \$dir.\$i + fi + done + done +####### END REMOTE SCRIPT ####### +EOF +} + + ### ################################################################## ### ROTATE BACKUPS ### -if [ "$remove" == "yes" ]; then - +if [ "$rotate" == "yes" ]; then + do_rotate fi ### REMOVE OLD MAILDIRS ### -if [ "$rotate" == "yes" ]; then - +if [ "$remove" == "yes" ]; then + debug remove fi ### ROTATE BACKUPS ### if [ "$letter" != "" ]; then - + debug letter fi if [ "$user" != "" ]; then - + debug user fi