Suppress the creation of boot logs from the ubuntu image

The ubuntu image by default creates a logfile during each boot, but this
is uninteresting for our workflow. This switch suppresses the log.
This commit is contained in:
Andy Allan 2018-08-29 11:43:22 +08:00
parent 06915a77b5
commit d593d3d2dd

1
Vagrantfile vendored
View file

@ -8,6 +8,7 @@ Vagrant.configure("2") do |config|
override.vm.synced_folder ".", "/srv/openstreetmap-website" override.vm.synced_folder ".", "/srv/openstreetmap-website"
vb.customize ["modifyvm", :id, "--memory", "1024"] vb.customize ["modifyvm", :id, "--memory", "1024"]
vb.customize ["modifyvm", :id, "--cpus", "2"] vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"]
end end
# use third party image and NFS sharing for lxc # use third party image and NFS sharing for lxc