Message ID | 070404f2-9554-152b-5bbd-0fa87f4dfb65@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fstests: exclude exfat from tests which require metadata journaling | expand |
diff --git a/common/rc b/common/rc index 476d3d07..ec17c99a 100644 --- a/common/rc +++ b/common/rc @@ -3211,7 +3211,7 @@ _has_metadata_journaling() fi case "$FSTYP" in - ext2|vfat|msdos|udf) + ext2|vfat|msdos|udf|exfat) echo "$FSTYP does not support metadata journaling" return 1 ;;
Signed-off-by: Eric Sandeen <sandeen@redhat.com> ---