Last active
June 8, 2017 11:04
-
-
Save bonclay7/138b087bbbcccd3cef741b83db114779 to your computer and use it in GitHub Desktop.
This file contains hidden or 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/bash -e | |
| workdir=/tmp/packer | |
| pversion=0.10.1 | |
| which packer || { | |
| mkdir -p $workdir | |
| cd $workdir | |
| apt-get -qqy install unzip wget | |
| wget https://releases.hashicorp.com/packer/$pversion/packer_${pversion}_linux_amd64.zip && \ | |
| unzip packer_${pversion}_linux_amd64.zip && \ | |
| mv packer /usr/local/bin/ | |
| rm -Rf $workdir | |
| packer -v | |
| } | |
| echo "Go ahead and enjoy packer" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
maybe launch as sudo