[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/10: installer: Honor /tmp/installer-system-init-options.
From: |
guix-commits |
Subject: |
06/10: installer: Honor /tmp/installer-system-init-options. |
Date: |
Thu, 27 Feb 2020 11:00:30 -0500 (EST) |
mothacehe pushed a commit to branch wip-installer-tests
in repository guix.
commit a37698cb9e3b93cf207ee8f10a9c93c6aaae210a
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-tests created (now 2fb51ba), guix-commits, 2020/02/27
- 04/10: installer: Bypass connectivity check when /tmp/installer-assume-online exists., guix-commits, 2020/02/27
- 05/10: installer: Run commands without hopping through the shell., guix-commits, 2020/02/27
- 10/10: services: herd: Add restart-service., guix-commits, 2020/02/27
- 01/10: tests: 'run-basic-test' can enter a root password., guix-commits, 2020/02/27
- 06/10: installer: Honor /tmp/installer-system-init-options.,
guix-commits <=
- 08/10: installer: Fix cow-store umount., guix-commits, 2020/02/27
- 09/10: tests: install: Add %test-gui-installed-os-encrypted., guix-commits, 2020/02/27
- 02/10: installer: Use a Guile-Newt snapshot that supports 'form-watch-fd'., guix-commits, 2020/02/27
- 07/10: tests: install: Add "gui-installed-os"., guix-commits, 2020/02/27
- 03/10: installer: Implement a dialog on /var/guix/installer-socket., guix-commits, 2020/02/27