Ansible_workstation/tasks/ansible.yml

12 lines
206 B
YAML
Raw Normal View History

---
2019-05-14 13:28:22 +00:00
- name: Create ansible conf directory
file:
path: /etc/ansible
state: directory
- name: Copy ansible.cfg
copy:
src: files/ansible.cfg
dest: /etc/ansible/ansible.cfg
2019-05-14 13:28:22 +00:00
backup: yes