12 lines
181 B
YAML
12 lines
181 B
YAML
---
|
|
|
|
- name: Installation dnsmasq
|
|
apt: name=dnsmasq state=present
|
|
|
|
- name: Copie du fichier dnsmasq.conf
|
|
copy: src=dnsmasq.conf dest=/etc/
|
|
notify:
|
|
- restart dnsmasq
|
|
|
|
|