diff options
Diffstat (limited to 'genenetwork')
-rw-r--r-- | genenetwork/services/genenetwork.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/genenetwork/services/genenetwork.scm b/genenetwork/services/genenetwork.scm index f5d1e01..5a2dda2 100644 --- a/genenetwork/services/genenetwork.scm +++ b/genenetwork/services/genenetwork.scm @@ -100,7 +100,7 @@ (define (genenetwork-activation config) (match-record config <genenetwork-configuration> - (auth-db) + (gn2-secrets gn3-secrets gn-auth-secrets auth-db) (with-imported-modules '((guix build utils)) #~(begin (use-modules (guix build utils)) @@ -109,8 +109,11 @@ (chown file (passwd:uid (getpw "genenetwork")) (passwd:gid (getpw "genenetwork")))) - (find-files #$(dirname auth-db) - #:directories? #t)))))) + (cons* #$gn2-secrets + #$gn3-secrets + #$gn-auth-secrets + (find-files #$(dirname auth-db) + #:directories? #t))))))) (define (configuration-file-gexp alist) "Return a G-expression that constructs a configuration file of |