aix_filesystem - fix module_util pathing issue for ansible 2.9 (#567)

* Bump ansible.posix requirement to 1.0.0

Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
pull/577/head
Abhijeet Kasurde 2020-06-23 17:12:32 +05:30 committed by GitHub
parent a33d0a55e7
commit 4399759cf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View File

@ -0,0 +1,3 @@
---
bugfixes:
- aix_filesystem - fix issues with ismount module_util pathing for Ansible 2.9 (https://github.com/ansible-collections/community.general/pull/567).

View File

@ -10,7 +10,7 @@ tags: null
# NOTE: No more dependencies can be added to this list # NOTE: No more dependencies can be added to this list
dependencies: dependencies:
ansible.netcommon: '>=0.0.2' ansible.netcommon: '>=0.0.2'
ansible.posix: '>=0.1.0' ansible.posix: '>=1.0.0'
community.kubernetes: '>=0.1.0' community.kubernetes: '>=0.1.0'
google.cloud: '>=0.0.9' google.cloud: '>=0.0.9'
repository: https://github.com/ansible-collections/community.general repository: https://github.com/ansible-collections/community.general

View File

@ -170,7 +170,7 @@ msg:
''' '''
from ansible.module_utils.basic import AnsibleModule from ansible.module_utils.basic import AnsibleModule
from ansible_collections.ansible.posix.plugins.module_utils.ismount import ismount from ansible_collections.ansible.posix.plugins.module_utils.mount import ismount
import re import re