Skip to content

Instantly share code, notes, and snippets.

@s-chb
Created April 26, 2020 18:13
Show Gist options
  • Save s-chb/dada872b831e40f325412a6cc315a9a5 to your computer and use it in GitHub Desktop.
Save s-chb/dada872b831e40f325412a6cc315a9a5 to your computer and use it in GitHub Desktop.
#!/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