Last active
January 20, 2016 21:04
Revisions
-
gjohnson revised this gist
Jan 20, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -10,5 +10,6 @@ Vagrant.configure(2) do |config| config.vm.synced_folder ".", "/vagrant" config.vm.provision "shell", inline: <<-SHELL sudo apt-get update sudo apt-get autoremove SHELL end -
gjohnson created this gist
Jan 20, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ required_plugins = %w( vagrant-faster vagrant-cachier vagrant-vbguest ) required_plugins.each do |plugin| system "vagrant plugin install #{plugin}" unless Vagrant.has_plugin? plugin end Vagrant.configure(2) do |config| config.vm.box = "ubuntu/vivid64" config.vm.box_check_update = true config.vm.network "private_network", ip: "192.168.33.10" config.vm.synced_folder ".", "/vagrant" config.vm.provision "shell", inline: <<-SHELL sudo apt-get update SHELL end