From 4712a039dc25214369eb26be8942874667279227 Mon Sep 17 00:00:00 2001 From: Aaron Culich Date: Thu, 1 Nov 2012 14:06:03 +0000 Subject: [PATCH] Added DEBIAN_FRONTEND=noninteractive to sudo apt-get which is required for silent mysql-server installation --- create-dev-env.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/create-dev-env.sh b/create-dev-env.sh index c872f1dcbc..96ec51d928 100755 --- a/create-dev-env.sh +++ b/create-dev-env.sh @@ -193,7 +193,8 @@ case `uname -s` in maya|lisa|natty|oneiric|precise|quantal) output "Installing ubuntu requirements" sudo apt-get -y update - sudo apt-get -y install $APT_PKGS + # DEBIAN_FRONTEND=noninteractive is required for silent mysql-server installation + sudo DEBIAN_FRONTEND=noninteractive apt-get -y install $APT_PKGS clone_repos ;; *)