From 855f6429362b8ea9c75f7d927ea0f48ffe7d7176 Mon Sep 17 00:00:00 2001 From: Albert Santoni Date: Fri, 4 Oct 2013 14:26:16 -0400 Subject: [PATCH] CC-5346: Install php5-json on Saucy --- install_full/ubuntu/airtime-full-install | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install_full/ubuntu/airtime-full-install b/install_full/ubuntu/airtime-full-install index cb24c5404..1ff1218c1 100755 --- a/install_full/ubuntu/airtime-full-install +++ b/install_full/ubuntu/airtime-full-install @@ -87,6 +87,11 @@ if [ "$code" != "squeeze" -a "$code" != "lucid" ]; then apt-get -y --force-yes install libvo-aacenc0 fi +#Install php5-json on Ubuntu Saucy. +if [ "$dist" = "Ubuntu" -a "$code" = "saucy" ]; then + apt-get -y --force-yes install php5-json +fi + #Install packages back-ported by Sourcefabric apt-get -y --force-yes install sourcefabric-keyring apt-get -y --force-yes install liquidsoap @@ -127,6 +132,7 @@ else echo "Creating Apache config for Airtime..." cp $SCRIPTPATH/../apache/airtime-vhost /etc/apache2/sites-available/airtime a2dissite default + a2dissite 000-default #Ubuntu 13.10 a2ensite airtime else echo "Apache config for Airtime already exists..."