1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02: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:
Brian Coca 2016-01-04 16:19:07 -05:00
commit cd3cfa93bf

View file

@ -40,6 +40,6 @@ class ActionModule(ActionBase):
group_name = self._task.args.get('key')
group_name = group_name.replace(' ','-')
result['changed'] = True
result['changed'] = False
result['add_group'] = group_name
return result