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:
commit
cd3cfa93bf
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue