From e19baa85fabaa5bccbebda6dcf334dcfae2bede9 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 4 Mar 2021 12:51:16 +0100 Subject: Moved borg action plugin into its own role --- action_plugins/init.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 action_plugins/init.py (limited to 'action_plugins/init.py') diff --git a/action_plugins/init.py b/action_plugins/init.py new file mode 100644 index 0000000..a37b109 --- /dev/null +++ b/action_plugins/init.py @@ -0,0 +1,23 @@ +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