diff options
author | Christopher Baines <mail@cbaines.net> | 2023-07-26 10:22:44 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-07-26 10:31:58 +0100 |
commit | a8b4ab61f31c4664ba16e33d07e9fd38e4b97dc8 (patch) | |
tree | dbe6d9e9315198e6e6852401def6a1a411324f47 /gnu/services | |
parent | d979197eaf10883e02c53b87f8e0d14bf254c525 (diff) |
services: guix-data-service: Unlink the two shepherd services.
So that they can be restarted in dependently.
* gnu/services/guix.scm (guix-data-service-shepherd-services): Don't require
the main service from the jobs service.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/guix.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm index ef77458255..1450eedf37 100644 --- a/gnu/services/guix.scm +++ b/gnu/services/guix.scm @@ -708,11 +708,7 @@ ca-certificates.crt file in the system profile." (shepherd-service (documentation "Guix Data Service process jobs") (provision '(guix-data-service-process-jobs)) - (requirement '(postgres - networking - ;; Require guix-data-service, as that the database - ;; migrations are handled through this service - guix-data-service)) + (requirement '(postgres networking)) (start #~(make-forkexec-constructor (list #$(file-append package |