mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
d43764da79
* revamp filesystem module to prepare next steps
* pass all commands to module.run_command() as lists
* refactor grow() and grow_cmd() to not need to override them so much
* refactor all existing get_fs_size() overrides to raise a ValueError if
not able to parse command output and return an integer.
* override MKFS_FORCE_FLAGS the same way for all fstypes that require it
* improve documentation of limitations of the module regarding FreeBSD
* fix indentation in DOCUMENTATION
* add/update function/method docstrings
* fix pylint hints
filesystem: refactor integration tests
* Include *reiserfs* and *swap* in tests.
* Fix reiserfs related code and tests accordingly.
* Replace "other fs" (unhandled by this module), from *swap* to *minix*
(both mkswap and mkfs.minix being provided by util-linux).
* Replace *dd* commands by *filesize* dedicated module.
* Use FQCNs and name the tasks.
* Update main tests conditionals.
* add a changelog fragment
* Apply suggestions from code review
Co-authored-by: Felix Fontein <felix@fontein.de>
* declare variables as lists when lists are needed
* fix construction without useless conversion
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit f6db0745fc
)
Co-authored-by: quidame <quidame@poivron.org>
25 lines
1.1 KiB
YAML
25 lines
1.1 KiB
YAML
---
|
|
tested_filesystems:
|
|
# key: fstype
|
|
# fssize: size (Mo)
|
|
# grow: True if resizefs is supported
|
|
# Other minimal sizes:
|
|
# - XFS: 20Mo
|
|
# - Btrfs: 150Mo (50Mo when "--metadata single" is used and 100Mb when on newer Fedora versions)
|
|
# - 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
|
|
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: 150, grow: False} # grow not implemented
|
|
reiserfs: {fssize: 33, grow: False} # grow not implemented
|
|
vfat: {fssize: 20, grow: True}
|
|
ocfs2: {fssize: '{{ ocfs2_fssize }}', grow: False} # grow not implemented
|
|
f2fs: {fssize: '{{ f2fs_fssize|default(60) }}', grow: 'f2fs_version is version("1.10.0", ">=")'}
|
|
lvm: {fssize: 20, grow: True}
|
|
swap: {fssize: 10, grow: False} # grow not implemented
|