Created
April 26, 2020 18:13
-
-
Save s-chb/dada872b831e40f325412a6cc315a9a5 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/sh | |
sudo apt-get update | |
sudo apt-get --yes --force-yes -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade | |
# Packer installation | |
sudo wget https://releases.hashicorp.com/packer/1.5.5/packer_1.5.5_linux_amd64.zip | |
sudo apt-get install unzip | |
sudo unzip packer_1.5.5_linux_amd64.zip | |
sudo rm -r packer_1.5.5_linux_amd64.zip | |
# Edit the bash profil | |
sudo echo 'export PATH="$PATH:~"' >> .profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment