[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#69343] [PATCH v5 07/10] Rename two remote variables confusingly nam
From: |
Herman Rimm |
Subject: |
[bug#69343] [PATCH v5 07/10] Rename two remote variables confusingly named 'generations'. |
Date: |
Sat, 21 Sep 2024 12:23:20 +0200 |
From: Felix Lechner <felix.lechner@lease-up.com>
Both refer to data sets returned from the remote expression, and one of them
shadowed an element of itself.
* gnu/machine/ssh.scm (machine->boot-alternatives): Rename generations
to remote-results.
Change-Id: Ibd8a3036126d9da1215cfc191884c0f54df637df
---
gnu/machine/ssh.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/machine/ssh.scm b/gnu/machine/ssh.scm
index fae42ad3ce..efe056dab7 100644
--- a/gnu/machine/ssh.scm
+++ b/gnu/machine/ssh.scm
@@ -451,10 +451,11 @@ (define (machine->boot-alternatives machine)
(read-file boot-parameters-path))))
(reverse (generation-numbers %system-profile)))))))
- (mlet* %store-monad ((generations (machine-remote-eval machine remote-exp)))
+ (mlet %store-monad
+ ((remote-results (machine-remote-eval machine remote-exp)))
(return
- (map (lambda (generation)
- (match generation
+ (map (lambda (remote-result)
+ (match remote-result
((generation system-path epoch serialized-params)
(let* ((params (call-with-input-string serialized-params
read-boot-parameters))
@@ -467,7 +468,7 @@ (define (machine->boot-alternatives machine)
(kernel-arguments
(append (bootable-kernel-arguments system-path root version)
(boot-parameters-kernel-arguments params))))))))
- generations))))
+ remote-results))))
(define-syntax-rule (with-roll-back should-roll-back? mbody ...)
"Catch exceptions that arise when binding MBODY, a monadic expression in
--
2.45.2
- [bug#69343] [PATCH v5 00/10] Simplify bootloader data structures and procedures., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 01/10] Fix bug where the extra menu entries for a bootloader were shown twice., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 02/10] Move <boot-parameters> record to a separate file., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 07/10] Rename two remote variables confusingly named 'generations'.,
Herman Rimm <=
- [bug#69343] [PATCH v5 03/10] Rename seconds->string procedure to epoch->date-string., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 04/10] Move epoch->date-string to gnu/system/boot.scm and use it elsewhere., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 06/10] Rename boot-parameters to boot-alternatives when appropriate., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 05/10] Offer a uniform decorated-boot-label and use it., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 10/10] Encapsulate <boot-parameters> to retain generation, system-path and epoch., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 08/10] Give a separate name to a commonly used expression., Herman Rimm, 2024/09/21
- [bug#69343] [PATCH v5 09/10] Split system->boot-parameters out of profile->boot-alternatives., Herman Rimm, 2024/09/21