Vagrant/Fabric setup for testing Ubuntu, FreeBSD

This commit is contained in:
Nathan Fiedler
2016-02-13 13:09:06 -08:00
parent 0c3c8888a7
commit dd78d6bfac
8 changed files with 121 additions and 46 deletions

View File

@ -3,7 +3,7 @@
#
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.box = 'ubuntu/trusty64'
# need enough memory to build syntex_syntax crate
config.vm.provider 'virtualbox' do |vb|
@ -11,10 +11,10 @@ Vagrant.configure(2) do |config|
end
# bring the system up to date
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get autoremove
sudo apt-get update
sudo apt-get upgrade
config.vm.provision 'shell', inline: <<-SHELL
sudo apt-get -y autoremove
sudo apt-get -y update
sudo apt-get -y upgrade
SHELL
end