This commit is contained in:
Neixen911 2026-01-28 21:08:41 +01:00 committed by GitHub
commit 0e41c86d0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -859,8 +859,8 @@
AVAILABLE_MODPROBE_FS=""
for FS in ${LIST_FS_NOT_SUPPORTED}; do
# Check if filesystem is present in modprobe output
FIND=$(${MODPROBEBINARY} -v -n ${FS} 2>/dev/null | ${GREPBINARY} -E "/${FS}.ko" | ${TAILBINARY} -1)
if [ -n "${FIND}" ]; then
FIND=$(${MODPROBEBINARY} -v -n ${FS} 2>/dev/null)
if [ $? -eq 0 ]; then
LogText "Result: found ${FS} support in the kernel (output = ${FIND})"
Debug "Module ${FS} present in the kernel"
LogText "Test: Checking if ${FS} is active"