From d4ee1ef4c67df4d6140dfe680835614d7c7381a6 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Mon, 24 Jun 2013 11:35:29 +0100 Subject: [PATCH] More verbose log messages for airtime-full-install --- install_full/ubuntu/airtime-full-install | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install_full/ubuntu/airtime-full-install b/install_full/ubuntu/airtime-full-install index 989cb42f3..cb24c5404 100755 --- a/install_full/ubuntu/airtime-full-install +++ b/install_full/ubuntu/airtime-full-install @@ -124,6 +124,7 @@ else echo "2.1 Apache Config File" echo "----------------------------------------------------" if [ ! -f /etc/apache2/sites-available/airtime ]; then + echo "Creating Apache config for Airtime..." cp $SCRIPTPATH/../apache/airtime-vhost /etc/apache2/sites-available/airtime a2dissite default a2ensite airtime @@ -132,9 +133,10 @@ else fi if [ ! -d /usr/share/airtime/public ]; then + echo "Creating Apache web root directory..." mkdir -p /usr/share/airtime/public/ else - echo "Airtime web root already exists..." + echo "Airtime web root directory already exists..." fi # PHP Config File for Apache @@ -142,12 +144,16 @@ else echo "2.2 PHP Config File for Apache" echo "----------------------------------------------------" if [ ! -f /etc/php5/apache2/airtime.ini ]; then + echo "Creating Airtime PHP config for Apache..." cp $SCRIPTPATH/../php5/airtime.ini /etc/php5/apache2/conf.d/airtime.ini else echo "Airtime PHP config for Apache already exists..." fi # Enable modules and restart Apache to enable any configuration changes + echo "----------------------------------------------------" + echo "2.3 Enable Apache Modules and Restart Apache" + echo "----------------------------------------------------" a2enmod rewrite php5 service apache2 restart fi