Skip to content

Instantly share code, notes, and snippets.

@rubenerd
Created November 20, 2014 23:35
Show Gist options
  • Save rubenerd/964767b25889ab4298f7 to your computer and use it in GitHub Desktop.
Save rubenerd/964767b25889ab4298f7 to your computer and use it in GitHub Desktop.
Install binary Packer on Debian
#!/bin/sh
destination="/usr/local/packer"
latest="0.7.2"
mkdir -P ${destination}
cd ${destination}
curl -OL "https://dl.bintray.com/mitchellh/packer/packer_${latest}_linux_amd64.zip"
unzip packer_${latest}_linux_amd64.zip
rm $packer_${latest}_linux_amd64.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment