summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-04-11 09:26:10 +0200
committerLudovic Courtès <ludo@gnu.org>2022-04-11 09:27:03 +0200
commit7da907f90e74a4edf96d76ee457ff958265ef8d4 (patch)
tree6a0a6cdc85f63255d6ee057fe925a471d341337f /guix
parentf42959662765d1cd47137ff5da09086fc6a62e99 (diff)
downloadguix-patches-7da907f90e74a4edf96d76ee457ff958265ef8d4.tar
guix-patches-7da907f90e74a4edf96d76ee457ff958265ef8d4.tar.gz
reconfigure: Fix typo on 'live-service-transient?'.
Fix typo introduced in e25eca35ff04e4234d0376fbb9a8e146869772c8. * guix/scripts/system/reconfigure.scm (running-services): Add question mark to 'live-service-transient?.
Diffstat (limited to 'guix')
-rw-r--r--guix/scripts/system/reconfigure.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/system/reconfigure.scm b/guix/scripts/system/reconfigure.scm
index ca988953f9..9ca66687ee 100644
--- a/guix/scripts/system/reconfigure.scm
+++ b/guix/scripts/system/reconfigure.scm
@@ -134,7 +134,7 @@ return the <live-service> objects that are currently running on MACHINE."
(map (lambda (service)
(list (live-service-provision service)
(live-service-requirement service)
- (live-service-transient service)
+ (live-service-transient? service)
(match (live-service-running service)
(#f #f)
(#t #t)