From 16ba02704e6b7eb9b4c0c5efbc0ee2166605c257 Mon Sep 17 00:00:00 2001 From: Demian Katz <demian.katz@villanova.edu> Date: Wed, 19 Jun 2019 11:48:13 -0400 Subject: [PATCH] Set variable to avoid getting stuck on prompt during setup. --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index e9a89f21e3c..426e9a9ba7c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -40,6 +40,7 @@ Vagrant.configure("2") do |config| debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root' # Install package dependencies. + export DEBIAN_FRONTEND=noninteractive apt-get update apt-get install -y git zip unzip apache2 default-jdk mysql-server apt-get install -y libapache2-mod-php php-mbstring php-pear php php-dev php-gd php-intl php-json php-ldap php-mysql php-soap php-xml php-curl -- GitLab