mirror of
https://github.com/ansible/ansible.git
synced 2026-08-03 08:03:05 +02:00
Remove unused local function _get_plugin_vars from vars manager (#85008)
(cherry picked from commit 93e6f012cb)
This commit is contained in:
@@ -214,24 +214,6 @@ class VariableManager:
|
||||
all_group = self._inventory.groups.get('all')
|
||||
host_groups = sort_groups([g for g in host.get_groups() if g.name != 'all'])
|
||||
|
||||
def _get_plugin_vars(plugin, path, entities):
|
||||
data = {}
|
||||
try:
|
||||
data = plugin.get_vars(self._loader, path, entities)
|
||||
except AttributeError:
|
||||
try:
|
||||
for entity in entities:
|
||||
if isinstance(entity, Host):
|
||||
data |= plugin.get_host_vars(entity.name)
|
||||
else:
|
||||
data |= plugin.get_group_vars(entity.name)
|
||||
except AttributeError:
|
||||
if hasattr(plugin, 'run'):
|
||||
raise AnsibleError("Cannot use v1 type vars plugin %s from %s" % (plugin._load_name, plugin._original_path))
|
||||
else:
|
||||
raise AnsibleError("Invalid vars plugin %s from %s" % (plugin._load_name, plugin._original_path))
|
||||
return data
|
||||
|
||||
# internal functions that actually do the work
|
||||
def _plugins_inventory(entities):
|
||||
""" merges all entities by inventory source """
|
||||
|
||||
Reference in New Issue
Block a user