all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Manual: why not restart service over killing the process
@ 2020-11-28 14:58 EuAndreh
  2020-11-28 15:44 ` Christopher Baines
  0 siblings, 1 reply; 4+ messages in thread
From: EuAndreh @ 2020-11-28 14:58 UTC (permalink / raw)
  To: help-guix

Hi!

The manual suggests a deploy-hook for the certbot-service-type that
looks like this:

(define %nginx-deploy-hook
  (program-file
   "nginx-deploy-hook"
   #~(let ((pid (call-with-input-file "/var/run/nginx/pid" read)))
       (kill pid SIGHUP))))

Instead of requiring the deploy-hook to know the path of the PID file,
why not restart the Shepherd service instead? Something like this:

(define %nginx-deploy-hook
  (program-file
   "nginx-deploy-hook"
   (with-imported-modules '((gnu services herd))
     #~(begin
         (use-modules (gnu services herd))
         (restart-service 'nginx)))))

If I understood correctly, those would result in equivalent outcomes,
and I tend to find the latter a more elegant approach. It is a bit
longer, but I like more restarting the service rather than killing the
process. Is there any downside I'm missing?

I can send a patch to the manual if this seems reasonable.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-29 14:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-28 14:58 Manual: why not restart service over killing the process EuAndreh
2020-11-28 15:44 ` Christopher Baines
2020-11-28 21:51   ` EuAndreh
2020-11-29 14:01   ` Jason Conroy

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.