From: Frantisek Sumsal Date: Wed, 14 Feb 2024 10:24:05 +0000 (+0100) Subject: test: always try to install the ext4 module X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=522467e67faf15e5a75a2139ae08e31c1957e10b;p=thirdparty%2Fsystemd.git test: always try to install the ext4 module So the tests work even if the base image filesystem is not ext4. --- diff --git a/test/test-functions b/test/test-functions index d504971706e..615dd8a5dc8 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 }