From 86623bcdae7a530a53d73a1a897091036509db49 Mon Sep 17 00:00:00 2001 From: Silke Meyer Date: Wed, 14 Jan 2015 17:57:25 +0100 Subject: [PATCH] Script now installs missing add-apt-repository tool. --- util/vagrant_provision.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/vagrant_provision.sh b/util/vagrant_provision.sh index ae354bb42..9988f3625 100644 --- a/util/vagrant_provision.sh +++ b/util/vagrant_provision.sh @@ -28,6 +28,8 @@ sudo openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xi #Install apache2 echo ">>> Installing Apache2 webserver" +# The package python-software-properties provides add-apt-repository on Ubuntu Precise Server +sudo apt-get install python-software-properties sudo add-apt-repository -y ppa:ondrej/apache2 sudo apt-key update sudo apt-get update