conditional_set_fact.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. """
  2. Ansible action plugin to help with setting facts conditionally based on other facts.
  3. """
  4. from ansible.plugins.action import ActionBase
  5. DOCUMENTATION = '''
  6. ---
  7. action_plugin: conditional_set_fact
  8. short_description: This will set a fact if the value is defined
  9. description:
  10. - "To avoid constant set_fact & when conditions for each var we can use this"
  11. author:
  12. - Eric Wolinetz ewolinet@redhat.com
  13. '''
  14. EXAMPLES = '''
  15. - name: Conditionally set fact
  16. conditional_set_fact:
  17. fact1: not_defined_variable
  18. - name: Conditionally set fact
  19. conditional_set_fact:
  20. fact1: not_defined_variable
  21. fact2: defined_variable
  22. - name: Conditionally set fact falling back on default
  23. conditional_set_fact:
  24. fact1: not_defined_var | defined_variable
  25. '''
  26. # pylint: disable=too-few-public-methods
  27. class ActionModule(ActionBase):
  28. """Action plugin to execute deprecated var checks."""
  29. def run(self, tmp=None, task_vars=None):
  30. result = super(ActionModule, self).run(tmp, task_vars)
  31. result['changed'] = False
  32. facts = self._task.args.get('facts', [])
  33. var_list = self._task.args.get('vars', [])
  34. local_facts = dict()
  35. for param in var_list:
  36. other_vars = var_list[param].replace(" ", "")
  37. for other_var in other_vars.split('|'):
  38. if other_var in facts:
  39. local_facts[param] = facts[other_var]
  40. break
  41. if local_facts:
  42. result['changed'] = True
  43. result['ansible_facts'] = local_facts
  44. return result