summaryrefslogtreecommitdiff
path: root/bin/bak-sites.sh
blob: dba0fbe655d12c9b615ff0a0517228a77e3ee60b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# ----------------------------------------------------------------------
# rotating-filesystem-snapshot utility
# essentially, rotate baksites-snapshots of /home 
# on a weekly basis using rsync and cron
# ----------------------------------------------------------------------


rm -rf /mnt/baksites/week.4
mv /mnt/baksites/week.3 /mnt/baksites/week.4
mv /mnt/baksites/week.2 /mnt/baksites/week.3
mv /mnt/baksites/week.1 /mnt/baksites/week.2
mv /mnt/baksites/week.0 /mnt/baksites/week.1
rsync -avvz ~/sites/ \
--copy-links \
--include="luxagraf" \
--exclude="*" \
--delete-after \
--exclude-from '/home/lxf/.rsync-exclude-sites' \
--link-dest=/mnt/baksites/week.1 \
 /mnt/baksites/week.0/