From 2451b5ced341e37fe004b4f36b040a55a97ce03e Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 4 Mar 2021 13:38:44 +0100 Subject: Fixed stupid ansible python sucks silent name collision --- action_plugins/init.py | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 action_plugins/init.py (limited to 'action_plugins/init.py') diff --git a/action_plugins/init.py b/action_plugins/init.py deleted file mode 100644 index a37b109..0000000 --- a/action_plugins/init.py +++ /dev/null @@ -1,23 +0,0 @@ -from ansible.plugins.action import ActionBase - - -class ActionModule(ActionBase): - def run(self, tmp=None, task_vars=None): - if task_vars is None: - task_vars = dict() - result = super(ActionModule, self).run(tmp, task_vars) - result['changed'] = False - result['failed'] = False - - is_borg_server = False - - for hostname, hostvars in task_vars['hostvars'].items() : - if 'borg_server' in hostvars.keys() and hostvars['borg_server'] == task_vars['ansible_host']: - is_borg_server = True - - result['ansible_facts'] = { - 'is_borg_server': is_borg_server, - } - - return result - -- cgit v1.2.3