10 lines
177 B
YAML
10 lines
177 B
YAML
|
---
|
||
|
# tasks file for etc_hosts
|
||
|
|
||
|
- name: Déployer le fichier /etc/hosts
|
||
|
ansible.builtin.template:
|
||
|
mode: u=rw,g=r,o=r
|
||
|
src: hosts.j2
|
||
|
dest: /etc/hosts
|
||
|
become: true
|