Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Liberate
backupninja
Commits
e8615f15
Commit
e8615f15
authored
20 years ago
by
elijah
Browse files
Options
Downloads
Patches
Plain Diff
not working yet, but i am checking in changes
parent
6dc56609
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
handlers/maildir
+109
-12
109 additions, 12 deletions
handlers/maildir
with
109 additions
and
12 deletions
handlers/maildir
+
109
−
12
View file @
e8615f15
#!/usr/bin/php4 -q
<?php
###############################################################
#
# This handler slowly creates a backup of each user's maildir
# to a remote server. It is designed to be run with low overhead
# in terms of cpu and bandwidth so it runs pretty slow.
#
# if destdir is /backup/maildir/, then it will contain the files
# daily.1
# daily.2
# daily.3
# weekly.1
# weekly.2
# monthly.1
# if keepdaily is 3, keepweekly is 2, and keepmonthly is 1.
#
##############################################################
getconf rotate yes
...
...
@@ -14,8 +20,9 @@ getconf remove yes
getconf loadlimit 5
getconf speedlimit 0
getconf
keepdaily
7
getconf
keepweekly
4
getconf keepdaily 5
getconf keepweekly 3
getconf keepmonthly 1
getconf srcdir /var/maildir
getconf destdir
...
...
@@ -23,6 +30,10 @@ getconf desthost
getconf destport 22
getconf destuser
# strip trailing /
destdir=${destdir%/}
srcdir=${srcdir%/}
# used for testing
getconf letter
getconf user
...
...
@@ -47,6 +58,14 @@ fi
##################################################################
### FUNCTIONS
# remote run the args remotely
function rrun() {
debug ssh -o PasswordAuthentication=no $desthost -l $destuser $@
if [ ! $test ]; then
debug ssh -o PasswordAuthentication=no $desthost -l $destuser $@
fi
}
function do_letters() {
for i in a b c d e f g h i j k l m n o p q r s t u v w x y z; do
do_maildirs "$srcdir/$i"
...
...
@@ -91,7 +110,7 @@ function do_remove() {
for i in a b c d e f g h i j k l m n o p q r s t u v w x y z; do
ls -1 "$srcdir/$i" | sort > $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,105 @@ function do_remove() {
rm $tmp2
}
function do_rotate() {
backuproot=$destdir
now=`date %s`
seconds_daily=86400
seconds_weekly=604800
seconds_monthly=2628000
ssh -o PasswordAuthentication=no $desthost -l $destuser <<EOF
keepdaily=$keepdaily
keepweekly=$keepweekly
keepmonthly=$keepmonthly
for rottype in daily weekly monthly; do
seconds=\`echo seconds_\${rottype}\`
dir="$backuproot/\$rottype"
if [ ! -d \$dir.1 ]; then
echo "Warning: \$dir.1 does not exist. This backup is missing, so we are skipping the rotation."
continue
elif [ ! -f \$dir.1/created ]; then
echo "Warning: \$dir.1/created does not exist. This backup may be only partially completed, so we are skipping the rotation."
continue
fi
# Rotate the current list of backups, if we can.
oldest=\`ls -d $\dir.* | sed 's/^.*\.//' | sort -n | tail -1\`
for (( i=\$oldest; i > 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 -gt \$cutoff_time ]; then
next=\$(( i + 1 ))
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 it was already rotated within the last " \$((cutoff_time/86400)) " days."
fi
fi
done
done
max=\$((keepdaily+1))
if [ ( \$keepweekly -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 -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=\`echo keep\${rottype}\`
max=\$((max+1))
dir="$backuproot/\$rottype"
oldest=\`ls -d $\dir.* | sed 's/^.*\.//' | sort -n | tail -1\`
# 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
EOF
}
###
##################################################################
### ROTATE BACKUPS ###
if [ "
$r
emov
e
" == "
yes
" ]; then
if [ "$r
otat
e" == "yes" ]; then
do_rotate
fi
### REMOVE OLD MAILDIRS ###
if [ "
$r
otat
e
" == "
yes
" ]; then
if [ "$r
emov
e" == "yes" ]; then
debug remove
fi
### ROTATE BACKUPS ###
if [ "$letter" != "" ]; then
debug letter
fi
if [ "$user" != "" ]; then
debug user
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment