mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
15 lines
511 B
YAML
15 lines
511 B
YAML
|
tested_filesystems:
|
||
|
# key: fstype
|
||
|
# fssize: size (Mo)
|
||
|
# grow: True if resizefs is supported
|
||
|
# Other minimal sizes:
|
||
|
# - XFS: 20Mo
|
||
|
# - Btrfs: 100Mo (50Mo when "--metadata single" is used)
|
||
|
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
|
||
|
btrfs: {fssize: 100, grow: False} # grow not implemented
|
||
|
# untested: lvm, requires a block device
|