I've been backing up my SVN repo and trac environment using a weekly cron job and 2 custom scripts. This has been going to Joyent Strongspace; but since they have discontinued the service, I need an alternative provider. I would prefer amazon S3 because I already use it, but any alternative that will work without too much (any) changes to my process will be welcome.

Here are my 2 scripts:

#!/bin/sh
rsync -rltpvz --delete /svn/ kryptonite\@mycompany.joyent.net@strongspace.joyent.net:svn

#!/bin/sh
rsync -rltpvz --delete /var/lib/trac/ kryptonite\@mycompany.joyent.net@strongspace.joyent.net:trac
link|improve this question
Really, no one knows? How do other people backup their SCM server? – Kryptonite Oct 17 '11 at 13:11
feedback

1 Answer

S3 doesn't support rsync out of the box. However, you can use FUSE and s3fs to create a file system over S3 and then rsync there.

From there, you can follow this guide on setting up the whole thing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.