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
# install vagrant | |
macmini:vagrant tru$ VERS=1.9.1 | |
macmini:vagrant tru$ curl https://releases.hashicorp.com/vagrant/${VERS}/vagrant_${VERS}.dmg > vagrant_${VERS}.dmg | |
macmini:vagrant tru$ curl https://releases.hashicorp.com/vagrant/${VERS}/vagrant_${VERS}_SHA256SUMS > vagrant_${VERS}_SHA256SUMS | |
macmini:vagrant tru$ grep vagrant_${VERS}.dmg vagrant_${VERS}_SHA256SUMS | shasum -a 256 -c && \ | |
macmini:vagrant tru$ hdiutil mount vagrant_${VERS}.dmg && \ | |
macmini:vagrant tru$ sudo installer -pkg /Volumes/Vagrant/Vagrant.pkg -target / | |
macmini:vagrant tru$ hdiutil unmount /Volumes/Vagrant | |
# installing VirtualBox | |
macmini:vagrant tru$ VERSVB=5.1.14 |