Commit 4712a039 by Aaron Culich

Added DEBIAN_FRONTEND=noninteractive to sudo apt-get which is required for…

Added DEBIAN_FRONTEND=noninteractive to sudo apt-get which is required for silent mysql-server installation
parent 2203a0bd
......@@ -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
;;
*)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment