X-Git-Url: https://codewiz.org/gitweb?p=wizbackup.git;a=blobdiff_plain;f=wizbackup;h=975fc6a9e42e819b25a0d49d7983edf3320cb4d0;hp=f857379346de4bb5e38bace10e2d9e14c05e9598;hb=8c5171836be85d47ed5399447c75167d9eb58399;hpb=1d1badd9b0d11377529245d2a6198865d08cc6b0 diff --git a/wizbackup b/wizbackup index f857379..975fc6a 100755 --- a/wizbackup +++ b/wizbackup @@ -1,6 +1,6 @@ #!/bin/bash # -# WizBackup 2.0 - Simple rsync backup +# WizBackup 2.0 - Simple rsync backup with snapshots # Based on incremental-backup 0.1 by Matteo Mattei # # Copyright 2006 Matteo Mattei @@ -20,7 +20,6 @@ # along with this program. If not, see . # - if [ $# -lt 2 ]; then echo "Usage: $0 SOURCE DEST [RSYNC_OPTS]" exit 1 @@ -33,10 +32,10 @@ set -u # CONFIGURATION ##################################################################### -# Source path +# Source rsync URL SRC=$1; shift -# DESTINATION DIRECTORY (must exists) +# Destination directory (will be created if it doesn't exist) DEST=$1; shift # NOTE: --timeout needs to be large enough: if a large dir tree don't change a lot of time can pass without I/O @@ -46,6 +45,9 @@ RSYNC_OPTS="-HAXa --stats --timeout 1800 --numeric-ids --delete --delete-exclude # Number of saved snapshots SNAPSHOTS=45 +# Abort backup if the destination volume has less than these GBs free +MIN_FREE_GB=10 + RESULT=500 DATE=`date +"%Y%m%d"` DEST="`echo $DEST | sed -e 's/\/$//'`" @@ -125,7 +127,7 @@ do_link() echo "$(date): Linking snapshot $DEST/$newest to $DEST/tmp" # TODO: Creating the hardlinks takes a lot of time. # Perhaps we could save time by recycling the oldest snapshot - cp -lR "$DEST/$newest" "$DEST/tmp" + cp -la "$DEST/$newest" "$DEST/tmp" RESULT=$? if [ $RESULT -ne 0 ]; then echo "$(date): Failed to setup tmp snapshot: $RESULT. Cleaning up." @@ -138,6 +140,15 @@ do_link() do_test() { # TODO: test for free space and free inodes in the $DEST filesystem + block_size=`stat --file-system --format "%S" "$DEST"` + free_blocks=`stat --file-system --format "%f" "$DEST"` + free_inodes=`stat --file-system --format "%d" "$DEST"` + free_gb=$((block_size * free_blocks / 1024 / 1024 / 1024)) + + if [ "$free_gb" -lt "$MIN_FREE_GB" ]; then + echo "$(date): Aborting due to insufficient free space ${free_gb}GB." + exit 670 + fi # Avoid clobbering the latest snapshot if the remote host does # not allow us to connect @@ -150,14 +161,15 @@ do_test() fi } -###################### -# MAIN -###################### +###################################### +# Main +###################################### # make sure to be root if (( `id -u` != 0 )); then { echo "Sorry, must be root. Exiting..."; exit; } fi -echo "$(date): START backup: $SRC -> $DEST" +echo "$(date): BEGIN backup: $SRC -> $DEST" +echo "$(date): $0 $SRC $DEST $@" do_init do_prune do_test