mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Mark stat module as supporting check_mode
This commit is contained in:
@@ -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')
|
||||||
|
|||||||
Reference in New Issue
Block a user