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:
commit
c91ba3a7c7
1 changed files with 2 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue