mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
reconfigure: Skip starting new shepherd services with auto-start? #f
Fixes <https://bugs.gnu.org/68093>. * guix/scripts/system/reconfigure.scm (upgrade-shepherd-services): Only add new shepherd services with auto-start? #t to to-start list. Change-Id: I268b921336fb1195ed76746eb6178889dbc258b4 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c8c5d12e45
commit
d282a31f52
1 changed files with 2 additions and 1 deletions
|
@ -194,7 +194,8 @@ (define target-services
|
|||
(filter live-service-running live-services)))
|
||||
(to-start (lset-difference eqv?
|
||||
(map shepherd-service-canonical-name
|
||||
target-services)
|
||||
(filter shepherd-service-auto-start?
|
||||
target-services))
|
||||
running))
|
||||
(service-files (map shepherd-service-file target-services)))
|
||||
(eval #~(parameterize ((current-warning-port (%make-void-port "w")))
|
||||
|
|
Loading…
Reference in a new issue