소스 검색

Adding towercli config to /etc/tower

Kenny Woodson 10 년 전
부모
커밋
0364e2cc29
3개의 변경된 파일23개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      roles/ansible_tower/tasks/main.yaml
  2. 8 0
      roles/ansible_tower_cli/tasks/main.yml
  3. 5 0
      roles/ansible_tower_cli/templates/tower_cli.cfg.j2

+ 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