From 8ba0149d5eb990901f929437a5ee3b8ca8089bff Mon Sep 17 00:00:00 2001
From: Kenny Woodson <kwoodson@redhat.com>
Date: Mon, 18 May 2015 15:05:04 -0400
Subject: Updating ansible config through a separate config.yml

---
 roles/ansible/tasks/config.yml | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 roles/ansible/tasks/config.yml

(limited to 'roles/ansible/tasks/config.yml')

diff --git a/roles/ansible/tasks/config.yml b/roles/ansible/tasks/config.yml
new file mode 100644
index 000000000..5e361429b
--- /dev/null
+++ b/roles/ansible/tasks/config.yml
@@ -0,0 +1,8 @@
+---
+- name: modify ansible.cfg
+  lineinfile:
+    dest: /etc/ansible/ansible.cfg
+    backrefs: yes
+    regexp: "^#?({{ item.option }})( *)="
+    line: '\1\2= {{ item.value }}'
+  with_items: cfg_options
-- 
cgit v1.2.3