From a5f8c8cc360c239923aa412463f49e8f99a51ea4 Mon Sep 17 00:00:00 2001 From: Christoph Date: Wed, 21 Sep 2022 14:43:14 +0200 Subject: [PATCH] mod_php_install.sh: fix typo. --- mod_php_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod_php_install.sh b/mod_php_install.sh index d09cc52..fc250c2 100755 --- a/mod_php_install.sh +++ b/mod_php_install.sh @@ -852,14 +852,14 @@ if $WITH_PHP_FPM_SUPPORT ; then FPM_POOL_MAX_CHILDREN="" while [[ "X$FPM_POOL_MAX_CHILDREN" = "X" ]]; do - echononl "pm.max_requests: [$DEFAULT_FPM_POOL_MAX_CHILDREN] " + echononl "pm.max_children: [$DEFAULT_FPM_POOL_MAX_CHILDREN] " read FPM_POOL_MAX_CHILDREN if [ "X$FPM_POOL_MAX_CHILDREN" = "X" ]; then FPM_POOL_MAX_CHILDREN=$DEFAULT_FPM_POOL_MAX_CHILDREN break fi if ! is_int $FPM_POOL_MAX_CHILDREN ; then - warn "Wrong value for pm.max_request was given (mus be an integer). Reenter again" + warn "Wrong value for pm.max_children was given (mus be an integer). Reenter again" FPM_POOL_MAX_CHILDREN="" continue fi