aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/tasks/ansible.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/space_server/tasks/ansible.yml')
-rw-r--r--roles/space_server/tasks/ansible.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/roles/space_server/tasks/ansible.yml b/roles/space_server/tasks/ansible.yml
deleted file mode 100644
index 209cb5b..0000000
--- a/roles/space_server/tasks/ansible.yml
+++ /dev/null
@@ -1,33 +0,0 @@
----
-- name: Create /etc/ansible/hosts
- copy:
- dest: '/etc/ansible/hosts'
- src: ansible/hosts
- owner: root
- group: root
- mode: 0644
-
-- name: Configure ansible
- ini_file:
- path: '/etc/ansible/ansible.cfg'
- section: '{{ item.section }}'
- option: '{{ item.option }}'
- value: '{{ item.value }}'
- with_items:
- - section: defaults
- option: 'gathering'
- value: 'smart'
- - section: defaults
- option: 'fact_caching'
- value: 'jsonfile'
- - section: defaults
- option: 'fact_caching_connection'
- value: '/tmp/ansible'
- - section: defaults
- option: 'fact_caching_timeout'
- value: '600'
- - section: defaults
- option: 'error_on_missing_handler'
- value: 'True'
-
-# vim: set ts=2 sw=2 et: