2018-01-11 17:10:14 +01:00
|
|
|
tested_filesystems:
|
|
|
|
# key: fstype
|
|
|
|
# fssize: size (Mo)
|
|
|
|
# grow: True if resizefs is supported
|
|
|
|
# Other minimal sizes:
|
|
|
|
# - XFS: 20Mo
|
2018-10-18 09:10:16 +02:00
|
|
|
# - Btrfs: 150Mo (50Mo when "--metadata single" is used and 100Mb when on newer Fedora versions)
|
2018-05-21 17:13:26 +02:00
|
|
|
# - f2fs:
|
|
|
|
# - 1.2.0 requires at leat 116Mo
|
|
|
|
# - 1.7.0 requires at least 30Mo
|
|
|
|
# - 1.10.0 requires at least 38Mo
|
|
|
|
# - resizefs asserts when initial fs is smaller than 60Mo and seems to require 1.10.0
|
2018-01-11 17:10:14 +01:00
|
|
|
ext4: {fssize: 10, grow: True}
|
|
|
|
ext4dev: {fssize: 10, grow: True}
|
|
|
|
ext3: {fssize: 10, grow: True}
|
|
|
|
ext2: {fssize: 10, grow: True}
|
|
|
|
xfs: {fssize: 20, grow: False} # grow requires a mounted filesystem
|
2018-10-17 21:36:37 +02:00
|
|
|
btrfs: {fssize: 150, grow: False} # grow not implemented
|
2018-02-06 11:56:43 +01:00
|
|
|
vfat: {fssize: 20, grow: True}
|
2018-04-26 03:03:46 +02:00
|
|
|
ocfs2: {fssize: '{{ ocfs2_fssize }}', grow: False} # grow not implemented
|
2018-05-21 17:13:26 +02:00
|
|
|
f2fs: {fssize: '{{ f2fs_fssize|default(60) }}', grow: 'f2fs_version is version("1.10.0", ">=")'}
|
2018-06-21 10:24:28 +02:00
|
|
|
lvm: {fssize: 20, grow: True}
|