-
Notifications
You must be signed in to change notification settings - Fork 1
/
install-vagrant-v1.sh
executable file
·24 lines (19 loc) · 1.08 KB
/
install-vagrant-v1.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
wget https://releases.hashicorp.com/vagrant/2.2.3/vagrant_2.2.3_x86_64.deb -O /tmp/vagrant.deb
# wget https://releases.hashicorp.com/vagrant/2.0.1/vagrant_2.0.1_x86_64.deb -O /tmp/vagrant.deb
dpkg -i /tmp/vagrant.deb
rm /tmp/vagrant.deb
echo "################################################################"
echo "#################### Vagrant Installed #########################"
echo "################################################################"