diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2024-02-14 11:24:05 +0100 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2024-02-17 12:49:44 +0100 |
commit | adafa3b2f84ff38b0e1460ccafddd63e82019699 (patch) | |
tree | c0e8917d94895a3bbb37d5b9b57f2146361fcc27 /test/test-functions | |
parent | test: use btrfs by default on Arch as well (diff) | |
download | systemd-adafa3b2f84ff38b0e1460ccafddd63e82019699.tar.xz systemd-adafa3b2f84ff38b0e1460ccafddd63e82019699.zip |
test: always try to install the ext4 module
So the tests work even if the base image filesystem is not ext4.
Diffstat (limited to 'test/test-functions')
-rw-r--r-- | test/test-functions | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-functions b/test/test-functions index 3c12d05495..0b9ee0a45b 100644 --- a/test/test-functions +++ b/test/test-functions @@ -1123,14 +1123,14 @@ install_fs_tools() { install_modules() { dinfo "Install modules" - instmods bridge dummy ipvlan macvlan vfat veth + instmods bridge dummy ext4 ipvlan macvlan vfat veth instmods loop =block instmods nls_ascii =nls instmods overlay =overlayfs instmods scsi_debug if get_bool "$LOOKS_LIKE_SUSE"; then - instmods ext4 af_packet + instmods af_packet fi } |