main.yaml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. - name: install some useful packages
  3. action: "{{ ansible_pkg_mgr }} name={{ item }} state=present"
  4. with_items:
  5. - git
  6. - python-pip
  7. - unzip
  8. - python-psphere
  9. - ansible
  10. - telnet
  11. - ack
  12. - pylint
  13. - name: download Tower setup
  14. get_url: url=http://releases.ansible.com/ansible-tower/setup/ansible-tower-setup-2.1.1.tar.gz dest=/opt/ force=no
  15. - name: extract Tower
  16. unarchive: src=/opt/ansible-tower-setup-2.1.1.tar.gz dest=/opt copy=no creates=ansible-tower-setup-2.1.1
  17. - name: Open firewalld port for http
  18. firewalld: port=80/tcp permanent=true state=enabled
  19. - name: Open firewalld port for https
  20. firewalld: port=443/tcp permanent=true state=enabled
  21. - name: Open firewalld port for https
  22. firewalld: port=8080/tcp permanent=true state=enabled
  23. - name: Set (httpd_can_network_connect) flag on and keep it persistent across reboots
  24. seboolean: name=httpd_can_network_connect state=yes persistent=yes
  25. - name: Set (httpd_can_network_connect_db) flag on and keep it persistent across reboots
  26. seboolean: name=httpd_can_network_connect_db state=yes persistent=yes
  27. - name: Setup proot to allow access to /etc/tower/
  28. lineinfile:
  29. dest: /etc/tower/settings.py
  30. backrefs: yes
  31. regexp: "^({{ item.option }})( *)="
  32. line: '\1\2= {{ item.value }}'
  33. with_items: config_changes | default([], true)