Update php.sh

This commit is contained in:
FusionPBX 2019-08-22 09:12:28 -06:00 committed by GitHub
parent 01ece28690
commit 8216b4ecaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 8 deletions

View File

@ -23,14 +23,12 @@ if [ ."$os_name" = ."Ubuntu" ]; then
elif [ ."$cpu_architecture" = ."arm" ]; then elif [ ."$cpu_architecture" = ."arm" ]; then
#Pi2 and Pi3 Raspbian #Pi2 and Pi3 Raspbian
#Odroid #Odroid
if [ ."$os_codename" = ."stretch" ]; then #if [ ."$os_codename" = ."stretch" ]; then
php_version=7.2 # php_version=7.2
else #else
php_version=5.6 # php_version=
fi #fi
apt-get -y install apt-transport-https lsb-release ca-certificates php_version=
wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list'
else else
#10.x - buster #10.x - buster
#9.x - stretch #9.x - stretch
@ -52,6 +50,10 @@ apt-get update -y
#install dependencies #install dependencies
apt-get install -y nginx apt-get install -y nginx
if [ ."$php_version" = ."" ]; then
apt-get install -y php php-cli php-fpm php-pgsql php-sqlite3 php-odbc php-curl php-imap php-xml php-gd
apt-get install -y php-mcrypt
fi
if [ ."$php_version" = ."5.6" ]; then if [ ."$php_version" = ."5.6" ]; then
apt-get install -y php5 php5-cli php5-fpm php5-pgsql php5-sqlite php5-odbc php5-curl php5-imap php5-mcrypt php5-gd apt-get install -y php5 php5-cli php5-fpm php5-pgsql php5-sqlite php5-odbc php5-curl php5-imap php5-mcrypt php5-gd
fi fi