From d593d3d2dd6986aa07f5d5268d3e0d7b808590db Mon Sep 17 00:00:00 2001 From: Andy Allan Date: Wed, 29 Aug 2018 11:43:22 +0800 Subject: [PATCH] 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. --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 44d914d75..d10934b37 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -8,6 +8,7 @@ Vagrant.configure("2") do |config| override.vm.synced_folder ".", "/srv/openstreetmap-website" vb.customize ["modifyvm", :id, "--memory", "1024"] vb.customize ["modifyvm", :id, "--cpus", "2"] + vb.customize ["modifyvm", :id, "--uartmode1", "disconnected"] end # use third party image and NFS sharing for lxc -- 2.43.2