77 lines
2.2 KiB
Bash
77 lines
2.2 KiB
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
#move to script directory so all relative paths work
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
|
||
|
|
#includes
|
||
|
|
. ./config.sh
|
||
|
|
. ./colors.sh
|
||
|
|
. ./environment.sh
|
||
|
|
|
||
|
|
#show cpu details
|
||
|
|
echo "cpu architecture: $cpu_architecture"
|
||
|
|
echo "cpu name: $cpu_name"
|
||
|
|
|
||
|
|
#make sure unzip is install
|
||
|
|
apt-get install -y unzip
|
||
|
|
|
||
|
|
#remove the ioncube directory if it exists
|
||
|
|
if [ -d "ioncube" ]; then
|
||
|
|
rm -Rf ioncube;
|
||
|
|
fi
|
||
|
|
|
||
|
|
#get the ioncube load and unzip it
|
||
|
|
if [ .$cpu_architecture = .'x86' ]; then
|
||
|
|
#get the ioncube 64 bit loader
|
||
|
|
wget --no-check-certificate https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.zip
|
||
|
|
|
||
|
|
#uncompress the file
|
||
|
|
unzip ioncube_loaders_lin_x86-64.zip
|
||
|
|
|
||
|
|
#remove the zip file
|
||
|
|
rm ioncube_loaders_lin_x86-64.zip
|
||
|
|
elif [ .$cpu_architecture = ."arm" ]; then
|
||
|
|
if [ .$cpu_name = .'armv7l' ]; then
|
||
|
|
#get the ioncube 64 bit loader
|
||
|
|
wget --no-check-certificate https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_armv7l.zip
|
||
|
|
|
||
|
|
#uncompress the file
|
||
|
|
unzip ioncube_loaders_lin_armv7l.zip
|
||
|
|
|
||
|
|
#remove the zip file
|
||
|
|
rm ioncube_loaders_lin_armv7l.zip
|
||
|
|
fi
|
||
|
|
fi
|
||
|
|
|
||
|
|
#set the version of php
|
||
|
|
if [ ."$os_codename" = ."beowolf" ]; then
|
||
|
|
php_version=7.3
|
||
|
|
fi
|
||
|
|
if [ ."$os_codename" = ."chimaera" ]; then
|
||
|
|
php_version=7.4
|
||
|
|
fi
|
||
|
|
|
||
|
|
#copy the loader to the correct directory
|
||
|
|
if [ ."$php_version" = ."7.3" ]; then
|
||
|
|
#copy the php extension .so into the php lib directory
|
||
|
|
cp ioncube/ioncube_loader_lin_7.3.so /usr/lib/php/20180731
|
||
|
|
|
||
|
|
#add the 00-ioncube.ini file
|
||
|
|
echo "zend_extension = /usr/lib/php/20180731/ioncube_loader_lin_7.3.so" > /etc/php/7.3/fpm/conf.d/00-ioncube.ini
|
||
|
|
echo "zend_extension = /usr/lib/php/20180731/ioncube_loader_lin_7.3.so" > /etc/php/7.3/cli/conf.d/00-ioncube.ini
|
||
|
|
|
||
|
|
#restart the service
|
||
|
|
/usr/sbin/service php7.3-fpm restart
|
||
|
|
fi
|
||
|
|
if [ ."$php_version" = ."7.4" ]; then
|
||
|
|
#copy the php extension .so into the php lib directory
|
||
|
|
cp ioncube/ioncube_loader_lin_7.4.so /usr/lib/php/20190902
|
||
|
|
|
||
|
|
#add the 00-ioncube.ini file
|
||
|
|
echo "zend_extension = /usr/lib/php/20190902/ioncube_loader_lin_7.4.so" > /etc/php/7.4/fpm/conf.d/00-ioncube.ini
|
||
|
|
echo "zend_extension = /usr/lib/php/20190902/ioncube_loader_lin_7.4.so" > /etc/php/7.4/cli/conf.d/00-ioncube.ini
|
||
|
|
|
||
|
|
#restart the service
|
||
|
|
/usr/sbin/service php7.4-fpm restart
|
||
|
|
fi
|