system/tasks/hosts.yml
vincent 1419eaa003
All checks were successful
continuous-integration/drone/push Build is passing
style: correct ansible lint
2022-12-10 20:25:54 +01:00

9 lines
175 B
YAML

- name: Install custom hosts file
become: true
ansible.builtin.template:
src: etc_hosts.j2
dest: "{{ hosts_file }}"
owner: root
group: root
mode: 0644