mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
511 B
YAML
15 lines
511 B
YAML
7 years ago
|
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
|