Last active
September 24, 2022 18:14
-
-
Save nusserstudios/4393b9101b640c7874813ffa68a78996 to your computer and use it in GitHub Desktop.
Update Vagrant Ubuntu 18 WSL - From https://superuser.com/questions/845987/how-do-i-upgrade-vagrant-to-the-latest-version-in-ubuntu/845989
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
curl -O https://releases.hashicorp.com/vagrant/2.2.16/vagrant_2.2.16_x86_64.deb | |
curl -O https://releases.hashicorp.com/vagrant/2.2.16/vagrant_2.2.16_SHA256SUMS | |
curl -O https://releases.hashicorp.com/vagrant/2.2.16/vagrant_2.2.16_SHA256SUMS.sig | |
curl -sS https://keybase.io/hashicorp/key.asc | gpg --import | |
gpg --verify vagrant_2.2.16_SHA256SUMS.sig vagrant_2.2.16_SHA256SUMS | |
shasum -a 256 -c <(cat vagrant_2.2.16_SHA256SUMS | grep 64.deb) -s | |
sudo apt install ./vagrant_2.2.16_x86_64.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment