main.yml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ---
  2. - yum:
  3. name: openshift-ansible-inventory
  4. state: present
  5. - template:
  6. src: multi_ec2.yaml.j2
  7. dest: /etc/ansible/multi_ec2.yaml
  8. group: "{{ oo_inventory_group }}"
  9. owner: "{{ oo_inventory_owner }}"
  10. mode: "0640"
  11. - file:
  12. state: directory
  13. dest: /etc/ansible/inventory
  14. owner: root
  15. group: libra_ops
  16. mode: 0750
  17. - file:
  18. state: link
  19. src: /usr/share/ansible/inventory/multi_ec2.py
  20. dest: /etc/ansible/inventory/multi_ec2.py
  21. owner: root
  22. group: libra_ops
  23. # This cron uses the above location to call its job
  24. - name: Cron to keep cache fresh
  25. cron:
  26. name: 'multi_ec2_inventory'
  27. minute: '*/10'
  28. job: '/usr/share/ansible/inventory/multi_ec2.py --refresh-cache &> /dev/null'
  29. when: oo_cron_refresh_cache is defined and oo_cron_refresh_cache
  30. - name: setting ec2.ini destination_format
  31. lineinfile:
  32. dest: /usr/share/ansible/inventory/aws/ec2.ini
  33. regexp: '^destination_format *='
  34. line: "destination_format = {{ oo_ec2_destination_format }}"
  35. when: oo_ec2_destination_format is defined
  36. - name: setting ec2.ini destination_format_tags
  37. lineinfile:
  38. dest: /usr/share/ansible/inventory/aws/ec2.ini
  39. regexp: '^destination_format_tags *='
  40. line: "destination_format_tags = {{ oo_ec2_destination_format_tags }}"
  41. when: oo_ec2_destination_format_tags is defined
  42. - name: Set cache location
  43. file:
  44. state: directory
  45. dest: "{{ oo_inventory_cache_location | dirname }}"
  46. owner: root
  47. group: libra_ops
  48. recurse: yes
  49. mode: '2750'
  50. when: oo_inventory_cache_location is defined