Commit f93b951b by Laurent Defert

Mark stat module as supporting check_mode

parent e3e6f028
...@@ -63,7 +63,8 @@ def main(): ...@@ -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')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment