summaryrefslogtreecommitdiff
path: root/lib/ansible/runner/action_plugins/add_host.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/runner/action_plugins/add_host.py')
-rw-r--r--lib/ansible/runner/action_plugins/add_host.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/ansible/runner/action_plugins/add_host.py b/lib/ansible/runner/action_plugins/add_host.py
index 2df7d3b818..ef27d99275 100644
--- a/lib/ansible/runner/action_plugins/add_host.py
+++ b/lib/ansible/runner/action_plugins/add_host.py
@@ -85,6 +85,13 @@ class ActionModule(object):
inventory.add_group(new_group)
grp = inventory.get_group(group_name)
grp.add_host(new_host)
+
+ # add this host to the group cache
+ if inventory._groups_list is not None:
+ if group_name in inventory._groups_list:
+ if new_host.name not in inventory._groups_list[group_name]:
+ inventory._groups_list[group_name].append(new_host.name)
+
vv("added host to group via add_host module: %s" % group_name)
result['new_groups'] = groupnames.split(",")