diff --git a/definitions/.common/vagrant.sh b/definitions/.common/vagrant.sh index ae70a2fff..3b4216d4b 100644 --- a/definitions/.common/vagrant.sh +++ b/definitions/.common/vagrant.sh @@ -3,8 +3,7 @@ if [ -f /home/vagrant/.vbox_version ]; then mkdir /tmp/vbox VER=$(cat /home/vagrant/.vbox_version) - wget http://download.virtualbox.org/virtualbox/$VER/VBoxGuestAdditions_$VER.iso - mount -o loop VBoxGuestAdditions_$VER.iso /tmp/vbox + mount -o loop VBoxGuestAdditions_$VER.iso /tmp/vbox sh /tmp/vbox/VBoxLinuxAdditions.run umount /tmp/vbox rmdir /tmp/vbox @@ -13,7 +12,7 @@ fi mkdir /home/vagrant/.ssh wget --no-check-certificate \ - 'http://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub' \ + 'https://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub' \ -O /home/vagrant/.ssh/authorized_keys chown -R vagrant /home/vagrant/.ssh chmod -R go-rwsx /home/vagrant/.ssh