mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
[WIP] [stable-2] Fix filesystem tests on OpenSuSE (#3443)
* Disable failing test on OpenSuSE. * Fix condition. * Correct fix.
This commit is contained in:
parent
e9900f9a8e
commit
6fdeca5709
1 changed files with 2 additions and 2 deletions
|
@ -70,9 +70,9 @@
|
|||
- 'uuid3.stdout == uuid4.stdout' # unchanged
|
||||
|
||||
- when:
|
||||
- (grow | bool and (fstype != "vfat" or resize_vfat)) or
|
||||
- ((grow | bool and (fstype != "vfat" or resize_vfat)) or
|
||||
(fstype == "xfs" and ansible_system == "Linux" and
|
||||
ansible_distribution not in ["CentOS", "Ubuntu"])
|
||||
ansible_distribution not in ["CentOS", "Ubuntu", "openSUSE Leap"]))
|
||||
block:
|
||||
- name: Check that resizefs does nothing if device size is not changed
|
||||
filesystem:
|
||||
|
|
Loading…
Reference in a new issue