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