[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/12: installer: Honor /tmp/installer-system-init-options.
From: |
guix-commits |
Subject: |
11/12: installer: Honor /tmp/installer-system-init-options. |
Date: |
Fri, 21 Feb 2020 17:08:40 -0500 (EST) |
civodul pushed a commit to branch wip-installer-test
in repository guix.
commit 7084515983943ac22831704adacf426d643e0024
Author: Ludovic Courtès <address@hidden>
AuthorDate: Wed Feb 19 22:54:11 2020 +0100
installer: Honor /tmp/installer-system-init-options.
* gnu/installer/final.scm (install-system): Honor
"/tmp/installer-system-init-options".
---
gnu/installer/final.scm | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm
index 7193ecb..869be88 100644
--- a/gnu/installer/final.scm
+++ b/gnu/installer/final.scm
@@ -111,9 +111,19 @@ cow-store service."
Start COW-STORE service on target directory and launch guix install command in
a subshell. LOCALE must be the locale name under which that command will run,
or #f. Return #t on success and #f on failure."
- (let ((install-command (list "guix" "system" "init" "--fallback"
- (%installer-configuration-file)
- (%installer-target-dir))))
+ (let* ((options (catch 'system-error
+ (lambda ()
+ ;; If this file exists, it can provide
+ ;; additional command-line options.
+ (call-with-input-file
+ "/tmp/installer-system-init-options"
+ read))
+ (const '())))
+ (install-command (append (list "guix" "system" "init"
+ "--fallback")
+ options
+ (list (%installer-configuration-file)
+ (%installer-target-dir)))))
(mkdir-p (%installer-target-dir))
;; We want to initialize user passwords but we don't want to store them in
- branch wip-installer-test created (now 0699b97), guix-commits, 2020/02/21
- 03/12: installer: Add 'syslog' macro to write to syslog., guix-commits, 2020/02/21
- 04/12: installer: Log important bits to syslog., guix-commits, 2020/02/21
- 06/12: tests: 'run-basic-test' can enter a root password., guix-commits, 2020/02/21
- 05/12: tests: Factorize LUKS passphrase., guix-commits, 2020/02/21
- 09/12: installer: Bypass connectivity check when /tmp/installer-assume-online exists., guix-commits, 2020/02/21
- 01/12: marionette: 'wait-for' procedures no longer leak a port., guix-commits, 2020/02/21
- 02/12: marionette: Provide portable US-layout keystrokes for "<" and ">"., guix-commits, 2020/02/21
- 07/12: installer: Use a Guile-Newt snapshot that supports 'form-watch-fd'., guix-commits, 2020/02/21
- 11/12: installer: Honor /tmp/installer-system-init-options.,
guix-commits <=
- 10/12: installer: Run commands without hopping through the shell., guix-commits, 2020/02/21
- 08/12: installer: Implement a dialog on /var/guix/installer-socket., guix-commits, 2020/02/21
- 12/12: tests: install: Add "gui-installed-os"., guix-commits, 2020/02/21