supports_check_mode is true for these modules, but there is no change in behavior for them based on this bool flag
|
module = AnsibleModule( |
|
argument_spec=argument_spec, |
|
supports_check_mode=True, |
|
) |
|
module = AnsibleModule( |
|
argument_spec=argument_spec, |
|
supports_check_mode=True, |
|
) |
Performing changes with check_mode set to True thus actually does changes instead of just returning changed without changes being performed.
supports_check_mode is true for these modules, but there is no change in behavior for them based on this bool flag
ansible-cml/plugins/modules/cml_node.py
Lines 141 to 144 in 716c622
ansible-cml/plugins/modules/cml_lab.py
Lines 126 to 129 in 716c622
Performing changes with check_mode set to True thus actually does changes instead of just returning changed without changes being performed.