Skip to content

Instantly share code, notes, and snippets.

@farmdawgnation
Created August 21, 2012 18:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farmdawgnation/3418344 to your computer and use it in GitHub Desktop.
Save farmdawgnation/3418344 to your computer and use it in GitHub Desktop.
Install Duplicity and boto
#!/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