mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
services: Add missing 'user-processes' requirements.
* gnu/services/guix.scm (guix-build-coordinator-agent-shepherd-services): Add 'user-processes' requirement. * gnu/services/linux.scm (earlyoom-shepherd-service): Likewise.
This commit is contained in:
parent
182e8ddfc1
commit
9c34b793c1
2 changed files with 2 additions and 2 deletions
|
@ -440,7 +440,7 @@ (define (guix-build-coordinator-agent-shepherd-services config)
|
|||
(shepherd-service
|
||||
(documentation "Guix Build Coordinator Agent")
|
||||
(provision '(guix-build-coordinator-agent))
|
||||
(requirement '(networking))
|
||||
(requirement '(networking user-processes))
|
||||
(start
|
||||
#~(lambda _
|
||||
(parameterize ((%current-logfile-date-format ""))
|
||||
|
|
|
@ -173,7 +173,7 @@ (define (earlyoom-configuration->command-line-args config)
|
|||
(define (earlyoom-shepherd-service config)
|
||||
(shepherd-service
|
||||
(documentation "Run the Early OOM daemon.")
|
||||
(provision '(earlyoom))
|
||||
(provision '(earlyoom user-processes))
|
||||
(start #~(make-forkexec-constructor
|
||||
'#$(earlyoom-configuration->command-line-args config)
|
||||
#:log-file "/var/log/earlyoom.log"))
|
||||
|
|
Loading…
Reference in a new issue