Update install.sh

pull/109/head
midoks 5 years ago
parent 9d6c8f21b1
commit 44f3c95345
  1. 36
      plugins/php/versions/52/install.sh

@ -30,16 +30,16 @@ if [ ! -d $sourcePath/php/php${PHP_VER} ];then
fi fi
if [ -f $serverPath/php/53/bin/php.dSYM ];then if [ -f $serverPath/php/${PHP_VER}/bin/php.dSYM ];then
mv $serverPath/php/53/bin/php.dSYM $serverPath/php/53/bin/php mv $serverPath/php/${PHP_VER}/bin/php.dSYM $serverPath/php/${PHP_VER}/bin/php
fi fi
if [ -f $serverPath/php/53/sbin/php-fpm.dSYM ];then if [ -f $serverPath/php/${PHP_VER}/sbin/php-fpm.dSYM ];then
mv $serverPath/php/53/sbin/php-fpm.dSYM $serverPath/php/53/sbin/php-fpm mv $serverPath/php/${PHP_VER}/sbin/php-fpm.dSYM $serverPath/php/${PHP_VER}/sbin/php-fpm
fi fi
if [ -f $serverPath/php/53/bin/php ];then if [ -f $serverPath/php/${PHP_VER}/bin/php ];then
return return
fi fi
@ -56,11 +56,11 @@ else
fi fi
if [ ! -d $serverPath/php/53 ];then if [ ! -d $serverPath/php/${PHP_VER} ];then
cd $sourcePath/php/php${PHP_VER} && ./configure \ cd $sourcePath/php/php${PHP_VER} && ./configure \
--prefix=$serverPath/php/53 \ --prefix=$serverPath/php/${PHP_VER} \
--exec-prefix=$serverPath/php/53 \ --exec-prefix=$serverPath/php/${PHP_VER} \
--with-config-file-path=$serverPath/php/53/etc \ --with-config-file-path=$serverPath/php/${PHP_VER}/etc \
--with-zlib-dir=$serverPath/lib/zlib \ --with-zlib-dir=$serverPath/lib/zlib \
--enable-zip \ --enable-zip \
--enable-exif \ --enable-exif \
@ -89,12 +89,16 @@ if [ ! -d $serverPath/php/53 ];then
fi fi
if [ -f $serverPath/php/53/bin/php.dSYM ];then if [ -f $serverPath/php/${PHP_VER}/bin/php.dSYM ];then
mv $serverPath/php/53/bin/php.dSYM $serverPath/php/53/bin/php mv $serverPath/php/${PHP_VER}/bin/php.dSYM $serverPath/php/${PHP_VER}/bin/php
fi fi
if [ -f $serverPath/php/53/sbin/php-fpm.dSYM ];then if [ -f $serverPath/php/${PHP_VER}/sbin/php-fpm.dSYM ];then
mv $serverPath/php/53/sbin/php-fpm.dSYM $serverPath/php/53/sbin/php-fpm mv $serverPath/php/${PHP_VER}/sbin/php-fpm.dSYM $serverPath/php/${PHP_VER}/sbin/php-fpm
fi
if [ ! -d $serverPath/php/${PHP_VER}/lib/php/extensions/no-debug-non-zts-20060613 ]; then
mkdir -p $serverPath/php/${PHP_VER}/lib/php/extensions/no-debug-non-zts-20060613
fi fi
#------------------------ install end ------------------------------------# #------------------------ install end ------------------------------------#
@ -104,9 +108,9 @@ fi
Uninstall_php() Uninstall_php()
{ {
$serverPath/php/init.d/php53 stop $serverPath/php/init.d/php${PHP_VER} stop
rm -rf $serverPath/php/53 rm -rf $serverPath/php/${PHP_VER}
echo "uninstall php-5.3.29 ..." > $install_tmp echo "uninstall php-${version} ..." > $install_tmp
} }
action=${1} action=${1}

Loading…
Cancel
Save