From 071abb8f75a7d1498d5b6e4113dfe2e253171f0f Mon Sep 17 00:00:00 2001 From: Trekky12 Date: Sat, 10 Jan 2026 15:16:38 +0100 Subject: [PATCH] Suppress 'signal process started' message when nginx config is restored (related to issue #4995) --- acme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme.sh b/acme.sh index d2e3b766..f04bdf72 100755 --- a/acme.sh +++ b/acme.sh @@ -3425,7 +3425,7 @@ _restoreNginx() { done _info "Reloading nginx" - if ! nginx -s reload >/dev/null; then + if ! nginx -s reload >/dev/null 2>&1; then _err "An error occurred while reloading nginx, please open an issue on $PROJECT." return 1 fi