|
|
|
@ -22,9 +22,15 @@ install)
|
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
delete)
|
|
|
|
|
php_sys=$(cat /etc/hestia_php_selector/system/php.path)
|
|
|
|
|
if [ -n "$php_sys" ]; then
|
|
|
|
|
update-alternatives --set php "$php_sys"
|
|
|
|
|
if [ -e /etc/hestia_php_selector/system/php.path ]; then
|
|
|
|
|
php_sys=$(cat /etc/hestia_php_selector/system/php.path)
|
|
|
|
|
if [ -n "$php_sys" ]; then
|
|
|
|
|
update-alternatives --set php "$php_sys"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
update-alternatives --display php | grep hestiacp-php-selector
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
update-alternatives --remove php /usr/bin/hestiacp-php-selector
|
|
|
|
|
fi
|
|
|
|
|
/usr/bin/hestiacp-php-admin remove-all
|
|
|
|
|
;;
|
|
|
|
|