* [bug#69801] [PATCH] reconfigure: Skip starting new shepherd services with auto-start? #f
@ 2024-03-14 19:40 Richard Sent
2024-03-21 13:56 ` bug#69801: " Ludovic Courtès
0 siblings, 1 reply; 2+ messages in thread
From: Richard Sent @ 2024-03-14 19:40 UTC (permalink / raw)
To: 69801
Cc: Richard Sent, Christopher Baines, Josselin Poiret,
Ludovic Courtès, Mathieu Othacehe, Ricardo Wurmus,
Simon Tournier, Tobias Geerinckx-Rice
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
---
guix/scripts/system/reconfigure.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix/scripts/system/reconfigure.scm b/guix/scripts/system/reconfigure.scm
index ff6242ffb4..9418060158 100644
--- a/guix/scripts/system/reconfigure.scm
+++ b/guix/scripts/system/reconfigure.scm
@@ -194,7 +194,8 @@ (define* (upgrade-shepherd-services eval os)
(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")))
base-commit: 7319b4d5286d31a9c6a889e81af72308efdaab41
--
2.41.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-03-21 13:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-14 19:40 [bug#69801] [PATCH] reconfigure: Skip starting new shepherd services with auto-start? #f Richard Sent
2024-03-21 13:56 ` bug#69801: " Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.