From a2997a0c708547dc7b684e84a14d372d1065134b Mon Sep 17 00:00:00 2001 From: James Valleroy Date: Thu, 14 Dec 2017 09:48:53 -0500 Subject: [PATCH] vagrant: Avoid debconf prompts while provisioning Signed-off-by: James Valleroy Reviewed-by: Joseph Nuthalapati --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 51bc5e3cb..c59e2c189 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -23,7 +23,7 @@ Vagrant.configure(2) do |config| cd /vagrant/ ./setup.py install apt update - apt install -y $(plinth --list-dependencies) + DEBIAN_FRONTEND=noninteractive apt install -y $(plinth --list-dependencies) systemctl daemon-reload systemctl restart plinth SHELL