From 157e06ccd35b107005ef21f474f89a2b5d497ef6 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Mon, 20 Apr 2020 05:49:37 -0700 Subject: [PATCH] polish --- examples/systemd/sidekiq.service | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/systemd/sidekiq.service b/examples/systemd/sidekiq.service index 86876d4b0..7cb137267 100644 --- a/examples/systemd/sidekiq.service +++ b/examples/systemd/sidekiq.service @@ -32,7 +32,7 @@ After=syslog.target network.target # # As of v6.0.6, Sidekiq automatically supports systemd's `Type=notify` and watchdog service # monitoring. If you are using an earlier version of Sidekiq, change this to `Type=simple` -# and remove the `WatchdogSec=5` line. +# and remove the `WatchdogSec` line. # # !!!! !!!! !!!! # @@ -50,8 +50,9 @@ ExecStart=/usr/local/bin/bundle exec sidekiq -e production # use `systemctl reload sidekiq` to send the quiet signal to Sidekiq # at the start of your deploy process. # Or you can use `systemctl kill -s TSTP sidekiq` -ExecReload=/usr/bin/kill -TSTP $MAINPID +#ExecReload=/usr/bin/kill -TSTP $MAINPID +# !!! Change this to your deploy user account !!! User=deploy Group=deploy UMask=0002