Browse Source

Adding towercli config to /etc/tower

Kenny Woodson 10 years ago
parent
commit
0364e2cc29

+ 10 - 0
roles/ansible_tower/tasks/main.yaml

@@ -30,3 +30,13 @@
 
 - name: Set (httpd_can_network_connect_db) flag on and keep it persistent across reboots
   seboolean: name=httpd_can_network_connect_db state=yes persistent=yes
+
+- name: Setup proot to allow access to /etc/tower/
+  lineinfile:
+    dest: /etc/tower/settings.py
+    backrefs: yes
+    regexp: "^({{ item.option }})( *)="
+    line: '\1\2 = {{ item.value }}'
+  with_items: config_changes | default([])
+    
+

+ 8 - 0
roles/ansible_tower_cli/tasks/main.yml

@@ -1,3 +1,11 @@
 ---
 - name: Install python-ansible-tower-cli
   yum: name=python-ansible-tower-cli
+
+- template:
+    src: tower_cli.cfg.j2
+    dest: /etc/tower/tower_cli.cfg
+    owner: awx
+    group: awx
+    mode: 0640
+

+ 5 - 0
roles/ansible_tower_cli/templates/tower_cli.cfg.j2

@@ -0,0 +1,5 @@
+[general]
+host = {{ oo_towercli_host }}
+username = {{ oo_towercli_username }}
+password = {{ oo_towercli_password }}
+verify_ssl = true