main.yml 337 B

123456789101112131415161718
  1. ---
  2. - name: Install python-ansible-tower-cli
  3. action: "{{ ansible_pkg_mgr }} name=python-ansible-tower-cli state=present"
  4. - template:
  5. src: tower_cli.cfg.j2
  6. dest: /etc/tower/tower_cli.cfg
  7. owner: awx
  8. group: awx
  9. mode: 0640
  10. - file:
  11. state: link
  12. src: /etc/tower
  13. dest: /etc/awx
  14. owner: awx
  15. group: awx