diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-30 15:19:36 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-09-30 15:21:36 +0200 |
commit | 0f66ef9aa99d2043abccbc80d858bdeca57534ac (patch) | |
tree | 6386d37e0ab1c6a2609849aa1d357fe710d729bf /gnu/tests | |
parent | df485be2f7d939b5c2b83a3a467cdff4d5a93851 (diff) | |
download | guix-0f66ef9aa99d2043abccbc80d858bdeca57534ac.tar.gz |
tests: install: Fix iso-image-installer test.
This is a follow-up of: 45eac6cdf5c8d9d7b0c564b105c790d2d2007799. It fixes the following error: + mkfs.ext4 -L my-root /dev/vda2 sh: line 12: mkfs.ext4: command not found * gnu/tests/install.scm (%test-iso-image-installer): Add e2fsprogs to the appended packages.
Diffstat (limited to 'gnu/tests')
-rw-r--r-- | gnu/tests/install.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/tests/install.scm b/gnu/tests/install.scm index 4e0e274e66..30a9026d5f 100644 --- a/gnu/tests/install.scm +++ b/gnu/tests/install.scm @@ -471,6 +471,8 @@ reboot\n") (mlet* %store-monad ((images (run-install %minimal-os-on-vda %minimal-os-on-vda-source + #:packages + (list e2fsprogs) #:script %simple-installation-script-for-/dev/vda #:installation-image-type |