forked from ISTI-ansible-roles/ansible-roles
10 lines
327 B
YAML
10 lines
327 B
YAML
---
|
|
- block:
|
|
- name: Install the bind caching configuration, we are going to run a caching nameserver
|
|
template: src=named.conf.caching-nameserver.options.j2 dest=/etc/bind/named.conf.options owner=root group=bind mode=0640
|
|
notify: reload bind
|
|
|
|
when: bind_enabled
|
|
tags: [ 'bind', 'caching_nameserver' ]
|
|
|