Coderabbit suggestions

This commit is contained in:
Adam Outler
2025-10-19 14:18:07 +00:00
parent 14be7a2bcc
commit a58b3e35b9
7 changed files with 9 additions and 13 deletions

View File

@@ -29,6 +29,6 @@ echo "/usr/sbin/crond -c \"${SYSTEM_SERVICES_CROND}\" -f -L \"${LOG_CROND}\" >>\
/usr/sbin/crond -c "${SYSTEM_SERVICES_CROND}" -f -L "${LOG_CROND}" >>"${LOG_CROND}" 2>&1 &
crond_pid=$!
wait "${crond_pid}"
wait "${crond_pid}"; status=$?
echo -ne " done"
exit $?
exit ${status}

View File

@@ -56,5 +56,6 @@ nginx \
nginx_pid=$!
wait "${nginx_pid}"
nginx_exit=$?
echo -ne " done"
exit $?
exit ${nginx_exit}

View File

@@ -24,8 +24,8 @@ done
trap cleanup EXIT
trap forward_signal INT TERM
echo "/usr/sbin/php-fpm83 -y \"${PHP_FPM_CONFIG_FILE}\" -F 2>&1 >>\"${LOG_APP_PHP_ERRORS}\" &"
/usr/sbin/php-fpm83 -y "${PHP_FPM_CONFIG_FILE}" -F 2>&1 >>"${LOG_APP_PHP_ERRORS}" &
echo "/usr/sbin/php-fpm83 -y \"${PHP_FPM_CONFIG_FILE}\" -F >>\"${LOG_APP_PHP_ERRORS}\" 2>&1 &"
/usr/sbin/php-fpm83 -y "${PHP_FPM_CONFIG_FILE}" -F >>"${LOG_APP_PHP_ERRORS}" 2>&1 &
php_fpm_pid=$!
wait "${php_fpm_pid}"