From c24917b0e617d74254fb3eed805f1a2ba47f9371 Mon Sep 17 00:00:00 2001 From: Christoph Date: Sat, 16 Jan 2021 03:02:49 +0100 Subject: [PATCH] mod_php_install.sh: fix error in creating logrotation file. --- mod_php_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod_php_install.sh b/mod_php_install.sh index 032ad5c..79ada6f 100755 --- a/mod_php_install.sh +++ b/mod_php_install.sh @@ -3219,7 +3219,7 @@ $FPM_LOG_DIR/*log { if [[ -f "${FPM_LOG_DIR}/php_errors.log" ]] ; then chown ${HTTPD_USER}:$HTTPD_GROUP ${FPM_LOG_DIR}/php_errors.log fi - [ ! -f $FPM_PID_FILE ]] || kill -USR1 $(cat ${FPM_PID_FILE}) + [ ! -f $FPM_PID_FILE ]] || kill -USR1 \$(cat ${FPM_PID_FILE}) endscript } EOF