]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: always try to install the ext4 module
authorFrantisek Sumsal <frantisek@sumsal.cz>
Wed, 14 Feb 2024 10:24:05 +0000 (11:24 +0100)
committerFrantisek Sumsal <frantisek@sumsal.cz>
Wed, 14 Feb 2024 10:24:05 +0000 (11:24 +0100)
So the tests work even if the base image filesystem is not ext4.

test/test-functions

index d504971706ed32a5b29bbf6e90892b95bd10e85b..615dd8a5dc8305878427289990d77ea5b2312d67 100644 (file)
@@ -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
 }