From c52cc8d602c3f9c4483c4b31783999124c487a6a Mon Sep 17 00:00:00 2001 From: Roy Ronalds Date: Mon, 28 Aug 2023 19:59:25 -0400 Subject: [PATCH] Fix deployment restart command syntax. --- deploy/cron/queued_restart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/cron/queued_restart.sh b/deploy/cron/queued_restart.sh index 0b4a1d412..24954a3b8 100644 --- a/deploy/cron/queued_restart.sh +++ b/deploy/cron/queued_restart.sh @@ -5,7 +5,7 @@ if [ -f /tmp/queued_restart.pid ]; then echo "queued.pid exists." nginx -s reload - php8.2-fpm restart + service php8.2-fpm restart echo "reloaded nginx and restarted php-fpm" rm /tmp/queued_restart.pid fi