Update multi-php-install.sh: Fixing disable_functions line

This commit is contained in:
myvesta 2025-03-31 16:41:43 +02:00 committed by GitHub
parent 4437f6f0da
commit 01e4890a97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -405,8 +405,8 @@ if [ "$inst_84" -eq 1 ]; then
fi fi
apt update > /dev/null 2>&1 # apt update > /dev/null 2>&1
apt upgrade -y > /dev/null 2>&1 # apt upgrade -y > /dev/null 2>&1
if [ $debian_version -ge 10 ]; then if [ $debian_version -ge 10 ]; then
a2dismod ruid2 > /dev/null 2>&1 a2dismod ruid2 > /dev/null 2>&1
@ -454,6 +454,10 @@ if [ -f "/usr/local/bin/tailf_apache_error.php" ]; then
echo "=== upgrading tailf_apache_error.php done." echo "=== upgrading tailf_apache_error.php done."
sleep 3 sleep 3
echo "" echo ""
fi
# Fixing php.ini files to have the correct disable_functions line
/usr/local/vesta/bin/v-fix-php-ini-disable-functions
echo "Everything done." echo "Everything done."
echo "" echo ""
fi