mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Mark stat module as supporting check_mode
This commit is contained in:
parent
e3e6f02835
commit
f93b951bdd
1 changed files with 2 additions and 1 deletions
|
@ -63,7 +63,8 @@ def main():
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
path = dict(required=True),
|
path = dict(required=True),
|
||||||
follow = dict(default='no', type='bool')
|
follow = dict(default='no', type='bool')
|
||||||
)
|
),
|
||||||
|
supports_check_mode = True
|
||||||
)
|
)
|
||||||
|
|
||||||
path = module.params.get('path')
|
path = module.params.get('path')
|
||||||
|
|
Loading…
Reference in a new issue