civodul pushed a commit to branch master
in repository guix.

commit 3f4438741615aa1a1198f9415be8bd110138d83e
Author: Ludovic Courtès <[email protected]>
AuthorDate: Mon Mar 17 22:52:19 2025 +0100

    services: nginx: ‘stop’ method returns #f.
    
    * gnu/services/web.scm (nginx-shepherd-service)[nginx-action]: Return #f
    for ‘stop’.
    
    Change-Id: I85290b5297f71a1dbfcd17b864d672d38c986d9b
---
 gnu/services/web.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/services/web.scm b/gnu/services/web.scm
index 561d3f39c3..f8cf06fb48 100644
--- a/gnu/services/web.scm
+++ b/gnu/services/web.scm
@@ -882,6 +882,7 @@ of index files."
              #~(lambda _
                  (invoke #$nginx-binary "-c" #$config-file #$@args)
                  (match '#$args
+                   (("-s" "stop") #f)
                    (("-s" . _) #t)
                    (_
                     ;; When FILE is true, we cannot be sure that PID-FILE will

Reply via email to