[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch wip-harden-installer updated: installer: Use system-wide guix for
From: |
guix-commits |
Subject: |
branch wip-harden-installer updated: installer: Use system-wide guix for system init. |
Date: |
Wed, 02 Feb 2022 06:08:19 -0500 |
This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch wip-harden-installer
in repository guix.
The following commit(s) were added to refs/heads/wip-harden-installer by this
push:
new bc65f83184 installer: Use system-wide guix for system init.
bc65f83184 is described below
commit bc65f8318481c3e49b1ef4af62169c186c96b225
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Mon Jan 31 18:45:17 2022 +0100
installer: Use system-wide guix for system init.
* gnu/installer.scm (installer-program): Remove dependency on the guix
package for the PATH.
* gnu/installer/final.scm (install-system): Set PATH inside container
to /run/current-system/profile/bin/.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
gnu/installer.scm | 1 -
gnu/installer/final.scm | 5 ++---
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/gnu/installer.scm b/gnu/installer.scm
index 7b2914be98..415f5a7af7 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -335,7 +335,6 @@ selected keymap."
ntfs-3g ;mkfs.ntfs
xfsprogs ;mkfs.xfs
kbd ;chvt
- guix ;guix system init call
util-linux ;mkwap
nano
shadow
diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm
index 2087536502..3f6dacc490 100644
--- a/gnu/installer/final.scm
+++ b/gnu/installer/final.scm
@@ -170,8 +170,7 @@ or #f. Return #t on success and #f on failure."
(database-dir "/var/guix/db")
(database-file (string-append database-dir "/db.sqlite"))
(saved-database (string-append database-dir "/db.save"))
- (ret #f)
- (path (getenv "PATH")))
+ (ret #f))
(mkdir-p (%installer-target-dir))
;; We want to initialize user passwords but we don't want to store them in
@@ -210,7 +209,7 @@ or #f. Return #t on success and #f on failure."
(setvbuf (current-output-port) 'none)
(setvbuf (current-error-port) 'none)
- (setenv "PATH" path)
+ (setenv "PATH" "/run/current-system/profile/bin/")
(set! ret (run-command install-command)))
(lambda ()
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch wip-harden-installer updated: installer: Use system-wide guix for system init.,
guix-commits <=