Skip to content

Instantly share code, notes, and snippets.

@x86nick
Created September 14, 2018 04:11
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 x86nick/6f4d3a57c6cc2ffaa7c57f33120b0fc4 to your computer and use it in GitHub Desktop.
Save x86nick/6f4d3a57c6cc2ffaa7c57f33120b0fc4 to your computer and use it in GitHub Desktop.
set -u
set -e
#---------------------------------------------------------------------------
# install the s3 utility for uploading / downloading content to s3
#---------------------------------------------------------------------------
cat <<EOF | sudo tee -a /etc/apt/sources.list
deb http://archive.mattho.com/ precise universe
EOF
sudo apt-get update
sudo apt-get --only-upgrade install -y libapt-pkg4.12
for pkg in s3cp hosts apt-transport-s3 secret-tool
do
sudo apt-get install -y --force-yes ${pkg}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment