Skip to content

Commit fd9043c

Browse files
committed
Do not show php-fpm installation notice on multiphp installation.
1 parent 19175b0 commit fd9043c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ fi
457457
if [ "$apache" = 'yes' ] && [ "$nginx" = 'yes' ] ; then
458458
echo ' - Apache Web Server (as backend)'
459459
fi
460-
if [ "$phpfpm" = 'yes' ]; then
460+
if [ "$phpfpm" = 'yes' ] && [ "$multiphp" = 'no' ]; then
461461
echo ' - PHP-FPM Application Server'
462462
fi
463463
if [ "$multiphp" = 'yes' ]; then

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ fi
420420
if [ "$apache" = 'yes' ] && [ "$nginx" = 'yes' ] ; then
421421
echo ' - Apache Web Server (as backend)'
422422
fi
423-
if [ "$phpfpm" = 'yes' ]; then
423+
if [ "$phpfpm" = 'yes' ] && [ "$multiphp" = 'no' ]; then
424424
echo ' - PHP-FPM Application Server'
425425
fi
426426
if [ "$multiphp" = 'yes' ]; then

0 commit comments

Comments
 (0)