From 85406dae0c220759da4b816fa9380c25d72b73ba Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Sun, 20 Jun 2010 21:44:58 +0300 Subject: First commit --- README | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100755 README (limited to 'README') diff --git a/README b/README new file mode 100755 index 0000000..565886c --- /dev/null +++ b/README @@ -0,0 +1,81 @@ +# README +# @author Filipp Lepalaan +# @date 06.06.2010 + +# Introduction +This is an offsite backup solution based on rsync and launchd. It's pretty easy to use and +set up. + +# Files +- start_offsite.sh the main script that does the actual backup and notification +- stop_offsite.sh the script to stop the backup in case it exceeds a time limit +- offsite_include.sh paths to files and directories to back up + +# Installation +- Make sure both the client and the server are running the same version of rsync. +The Mac ToolKit (http://github.com/filipp/mtk) has a script to build the latest +rsync with all the Mac-specific patches +- Install rsync to /usr/local/bin/ +- Make sure your firewall permits traffic on 873 TCP/UDP +- Create rsyncd.conf on the server and configure to your liking +- Start rsync in daemon mode on the server +- Edit start_offsite.sh to match your environment +- Add stuff to backup into offsite_include.txt +- Create two launchd jobs, one to run start_offsite.sh and the other to stop_offsite.sh, you can +name them whatever you like +- Load the new launchd plists + +# Operation + +start_offsite.sh spawns off rsync with all the apropriate switches (including --delete!) +You can monitor the progress of the backup by tailing offsite.log +The system will send some stats to the specified email address once the process is complete + +# launchd plists +You need two of these, one to start, something like: + + + + + + Label + offsync.start + ProgramArguments + + /Library/offsync/start.sh + + StartCalendarInterval + + Hour + 23 + Minute + 0 + + AbandonProcessGroup + + + + +and the second one to stop: + + + + + + Label + offsync.stop + ProgramArguments + + /Library/offsync/start.sh + + StartCalendarInterval + + Hour + 7 + Minute + 0 + + AbandonProcessGroup + + + -- cgit v1.2.3