Skip to content

Commit be60eea

Browse files
author
Kristan Kenney
committed
Fix PHP 7.2 pool configuration
PHP 7.3 was accidentally enabled alongside PHP 7.2
1 parent 0f14b4f commit be60eea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/deb/multiphp/apache2/PHP-72.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if [ ! -f "$pool_file_72" ]; then
6666
fi
6767

6868
if [ -f "$pool_file_73" ]; then
69-
echo "$pool_conf" > $pool_file_73
69+
rm $pool_file_73
7070
service php7.3-fpm restart
7171
fi
7272

install/deb/multiphp/nginx/PHP-72.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if [ ! -f "$pool_file_72" ]; then
6666
fi
6767

6868
if [ -f "$pool_file_73" ]; then
69-
echo "$pool_conf" > $pool_file_73
69+
rm $pool_file_73
7070
service php7.3-fpm restart
7171
fi
7272

0 commit comments

Comments
 (0)