test: always try to install the ext4 module

So the tests work even if the base image filesystem is not ext4.
This commit is contained in:
Frantisek Sumsal 2024-02-14 11:24:05 +01:00
parent 7eb7e3ec4f
commit adafa3b2f8

View 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
}