mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
services: secret-service: Move instance last in the list of services.
* gnu/services/virtualization.scm (secret-service-operating-system): Add the SECRET-SERVICE-TYPE instance to the end of the list.
This commit is contained in:
parent
f9090015c5
commit
e352706ad3
1 changed files with 6 additions and 2 deletions
|
@ -841,8 +841,12 @@ (define (secret-service-operating-system os)
|
|||
that will be listening to receive secret keys on port 1004, TCP."
|
||||
(operating-system
|
||||
(inherit os)
|
||||
(services (cons (service secret-service-type 1004)
|
||||
(operating-system-user-services os)))))
|
||||
;; Arrange so that the secret service activation snippet shows up before
|
||||
;; the OpenSSH and Guix activation snippets. That way, we receive OpenSSH
|
||||
;; and Guix keys before the activation snippets try to generate fresh keys
|
||||
;; for nothing.
|
||||
(services (append (operating-system-user-services os)
|
||||
(list (service secret-service-type 1004))))))
|
||||
|
||||
|
||||
;;;
|
||||
|
|
Loading…
Reference in a new issue