Vagrant/Fabric setup for testing Ubuntu, FreeBSD
This commit is contained in:
10
vagrant/ubuntu14/Vagrantfile
vendored
10
vagrant/ubuntu14/Vagrantfile
vendored
@ -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
|
||||
|
||||
Reference in New Issue
Block a user