1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #5680 from biolds/devel

Mark stat module as supporting check_mode
This commit is contained in:
Michael DeHaan 2014-01-20 10:48:52 -08:00
commit c91ba3a7c7

View file

@ -63,7 +63,8 @@ def main():
argument_spec = dict(
path = dict(required=True),
follow = dict(default='no', type='bool')
)
),
supports_check_mode = True
)
path = module.params.get('path')