diff options
-rw-r--r-- | genenetwork-development.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 8441c93..2a9fd2f 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -805,8 +805,7 @@ described by CONFIG, a <genenetwork-configuration> object." (shepherd-service (documentation "Run GeneNetwork 2 development server.") (provision '(genenetwork2)) - ;; FIXME: The genenetwork2 service should depend on redis. - (requirement '(networking genenetwork3)) + (requirement '(networking redis gn-auth genenetwork3)) (modules '((guix search-paths) (ice-9 match) (srfi srfi-1))) @@ -887,7 +886,7 @@ described by CONFIG, a <genenetwork-configuration> object." (shepherd-service (documentation "Run GeneNetwork 3 development server.") (provision '(genenetwork3)) - (requirement '(networking)) + (requirement '(networking gn-auth)) (start #~(make-forkexec-constructor (list #$(least-authority-wrapper (program-file "genenetwork3" |