From 2b3fdb74f64b634b886a428b19550b07685fdaf7 Mon Sep 17 00:00:00 2001 From: rdcs Date: Sun, 1 Mar 2020 18:12:37 -0800 Subject: [PATCH] Update Vagrantfile Previously, the installation of grub-pc may fail due to lack of interac- tivity. Passing -y was insufficient in silencing, but passing -q along with it allowed the installation to proceed as planned. --- vagrant/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant/Vagrantfile b/vagrant/Vagrantfile index 83b8fa33ea..d7c441991d 100644 --- a/vagrant/Vagrantfile +++ b/vagrant/Vagrantfile @@ -19,7 +19,7 @@ Vagrant.configure("2") do |config| # Work around https://github.com/chef/bento/issues/661 # apt-get -qqy upgrade - DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade + DEBIAN_FRONTEND=noninteractive apt-get -qy -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade apt-get -qqy install make zip unzip postgresql