Enable check mode for docker_image_facts (#38944)
This module never changes anything. As such, there is no reason not to just enable check mode.
This commit is contained in:
parent
d98c892017
commit
6635748c8f
1 changed files with 2 additions and 1 deletions
|
@ -218,7 +218,8 @@ def main():
|
|||
)
|
||||
|
||||
client = AnsibleDockerClient(
|
||||
argument_spec=argument_spec
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
||||
results = dict(
|
||||
|
|
Loading…
Reference in a new issue