23 lines
344 B
YAML
23 lines
344 B
YAML
|
# roles/bind/vars/Debian.yml
|
||
|
---
|
||
|
|
||
|
bind_packages:
|
||
|
- python-netaddr
|
||
|
- bind9
|
||
|
- bind9utils
|
||
|
|
||
|
bind_service: bind9
|
||
|
|
||
|
# Main config file
|
||
|
bind_config: /etc/bind/named.conf
|
||
|
|
||
|
# Localhost zone
|
||
|
bind_default_zone_files:
|
||
|
- /etc/bind/named.conf.default-zones
|
||
|
|
||
|
# Directory with run-time stuff
|
||
|
bind_dir: /var/cache/bind
|
||
|
|
||
|
bind_owner: root
|
||
|
bind_group: bind
|