mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
services: cuirass: Depend on ‘user-processes’.
* gnu/services/cuirass.scm (cuirass-shepherd-service) (cuirass-remote-worker-shepherd-service): Add ‘user-processes’ to the ‘requirement’ field. Change-Id: Iba087bfd8aaa9b1ef54bcc77d855adc136e18644
This commit is contained in:
parent
94abfccde9
commit
96c2186a08
1 changed files with 6 additions and 4 deletions
|
@ -146,7 +146,9 @@ (define (cuirass-shepherd-service config)
|
|||
`(,(shepherd-service
|
||||
(documentation "Run Cuirass.")
|
||||
(provision '(cuirass))
|
||||
(requirement '(guix-daemon postgres postgres-roles networking))
|
||||
(requirement '(user-processes
|
||||
guix-daemon
|
||||
postgres postgres-roles networking))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$cuirass "/bin/cuirass")
|
||||
"register"
|
||||
|
@ -178,7 +180,7 @@ (define (cuirass-shepherd-service config)
|
|||
,(shepherd-service
|
||||
(documentation "Run Cuirass web interface.")
|
||||
(provision '(cuirass-web))
|
||||
(requirement '(cuirass))
|
||||
(requirement '(user-processes cuirass))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$cuirass "/bin/cuirass")
|
||||
"web"
|
||||
|
@ -204,7 +206,7 @@ (define (cuirass-shepherd-service config)
|
|||
(shepherd-service
|
||||
(documentation "Run Cuirass remote build server.")
|
||||
(provision '(cuirass-remote-server))
|
||||
(requirement '(avahi-daemon cuirass))
|
||||
(requirement '(user-processes avahi-daemon cuirass))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$cuirass "/bin/cuirass")
|
||||
"remote-server"
|
||||
|
@ -375,7 +377,7 @@ (define (cuirass-remote-worker-shepherd-service config)
|
|||
(list (shepherd-service
|
||||
(documentation "Run Cuirass remote build worker.")
|
||||
(provision '(cuirass-remote-worker))
|
||||
(requirement '(avahi-daemon guix-daemon networking))
|
||||
(requirement '(user-processes avahi-daemon guix-daemon networking))
|
||||
(start #~(make-forkexec-constructor
|
||||
(list (string-append #$cuirass "/bin/cuirass")
|
||||
"remote-worker"
|
||||
|
|
Loading…
Reference in a new issue