mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
services: nginx: 'stop' returns #f.
Previously we'd return #t, which the Shepherd would consider a failure to stop the service. * gnu/services/web.scm (nginx-shepherd-service): In 'nginx-action', return #f when stopping the service.
This commit is contained in:
parent
985975ae80
commit
e80c725db7
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ (define (nginx-shepherd-service config)
|
|||
(default-nginx-config config))
|
||||
#$@args)
|
||||
(match '#$args
|
||||
(("-s" . _) #t)
|
||||
(("-s" . _) #f)
|
||||
(_
|
||||
;; When FILE is true, we cannot be sure that PID-FILE will
|
||||
;; be created, so assume it won't show up. When FILE is
|
||||
|
|
Loading…
Reference in a new issue