Created
August 21, 2012 18:58
-
-
Save farmdawgnation/3418344 to your computer and use it in GitHub Desktop.
Install Duplicity and boto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#### | |
# Installer for Duplicity and boto backend to make backing | |
# up your OS X based system to wherever you want. Requires | |
# Homebrew (http://mxcl.github.com/homebrew/) to be installed | |
# first. | |
# | |
# To run: | |
# curl https://raw.github.com/gist/3418344/brew-duplicityboto.sh | bash | |
#### | |
brew install duplicity | |
git clone git://github.com/boto/boto.git | |
cd boto | |
sudo python setup.py install | |
cd .. | |
sudo rm -Rf boto |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment