main.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. - yum:
  3. name: "{{ item }}"
  4. state: present
  5. when: ansible_pkg_mgr == "yum"
  6. with_items:
  7. - openshift-ansible-inventory
  8. - openshift-ansible-inventory-aws
  9. - openshift-ansible-inventory-gce
  10. - dnf:
  11. name: "{{ item }}"
  12. state: present
  13. when: ansible_pkg_mgr == "dnf"
  14. with_items:
  15. - openshift-ansible-inventory
  16. - openshift-ansible-inventory-aws
  17. - openshift-ansible-inventory-gce
  18. - name:
  19. copy:
  20. content: "{{ oo_inventory_accounts | to_nice_yaml }}"
  21. dest: /etc/ansible/multi_inventory.yaml
  22. group: "{{ oo_inventory_group }}"
  23. owner: "{{ oo_inventory_owner }}"
  24. mode: "0640"
  25. - file:
  26. state: directory
  27. dest: /etc/ansible/inventory
  28. owner: root
  29. group: libra_ops
  30. mode: 0750
  31. - file:
  32. state: link
  33. src: /usr/share/ansible/inventory/multi_inventory.py
  34. dest: /etc/ansible/inventory/multi_inventory.py
  35. owner: root
  36. group: libra_ops
  37. # This cron uses the above location to call its job
  38. - name: Cron to keep cache fresh
  39. cron:
  40. name: 'multi_inventory'
  41. minute: '*/10'
  42. job: '/usr/share/ansible/inventory/multi_inventory.py --refresh-cache &> /dev/null'
  43. when: oo_cron_refresh_cache is defined and oo_cron_refresh_cache
  44. - name: Set cache location
  45. file:
  46. state: directory
  47. dest: "{{ oo_inventory_cache_location | dirname }}"
  48. owner: root
  49. group: libra_ops
  50. recurse: yes
  51. mode: '2770'
  52. when: oo_inventory_cache_location is defined