X-Git-Url: https://git.treefish.org/~alex/backmeupscotty.git/blobdiff_plain/24d125dbe2a3ad4d43792e1e7f8894484d7fda41..6f1733c382c4a9764e4d3fc0687d567e9ca636fe:/backmeupscotty-example diff --git a/backmeupscotty-example b/backmeupscotty-example index c49e2ad..15b05b5 100755 --- a/backmeupscotty-example +++ b/backmeupscotty-example @@ -3,14 +3,21 @@ . ./backmeupscotty REMOTE_HOST=localhost -REMOTE_BASE=/home/alex/backtest -ARCHIVE_KEEPNBACKUPS=30 -ARCHIVE_KEEPNDAYS=1 +REMOTE_DIR=/tmp/scotty/dest +ARCHIVE_KEEPNBACKUPS=10 +ARCHIVE_KEEPNDAYS=0 +BACKUP_RUNEVERYNTHDAY=1 +SYNC_SRC="/tmp/scotty/src" +SYNC_EXC="/gack,/gugu/*" +BWLIMIT=600KiB -if ! isIncompleteOrNthDay dest; then - scottyinfo "This is not the nth day and no incomplete backup exists." - exit 0 -fi +function prepare { + echo "prepare" + sleep 5 +} -scottysync /home/alex/backtest/source dest "/gack,/gugu/*" -scottysync /home/alex/backtest/source2 dest2 +function cleanup { + [ -z "$1" ] && echo "normal cleanup" || echo "abort cleanup" +} + +backmeupscotty $@