12 lines
194 B
YAML
12 lines
194 B
YAML
---
|
|
|
|
- name: Installation bind9
|
|
apt: name=bind9 state=present update_cache=yes
|
|
|
|
- name: Copie named.conf.options
|
|
copy: src=named.conf.options dest=/etc/bind
|
|
notify:
|
|
- restart bind9
|
|
|
|
|