mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Merge pull request #13724 from mscherer/no_changed_on_group_by
Do not set 'changed' to True when using group_by
This commit is contained in:
@@ -40,6 +40,6 @@ class ActionModule(ActionBase):
|
|||||||
group_name = self._task.args.get('key')
|
group_name = self._task.args.get('key')
|
||||||
group_name = group_name.replace(' ','-')
|
group_name = group_name.replace(' ','-')
|
||||||
|
|
||||||
result['changed'] = True
|
result['changed'] = False
|
||||||
result['add_group'] = group_name
|
result['add_group'] = group_name
|
||||||
return result
|
return result
|
||||||
|
|||||||
Reference in New Issue
Block a user