[bind-authoritative] Added bind-authoritative role

certbot_on_virtu
_benjamin 2019-07-01 19:41:35 +02:00
parent 56977717c1
commit dbeff436f0
2 changed files with 14 additions and 1 deletions

View File

@ -13,11 +13,16 @@
- wireguard
- motd-role
# Deploy DNS server
# Deploy recursive DNS cache server
- hosts: odlyd.adm.crans.org
roles:
- bind-recursive
# Deplay authoritative DNS server
- hosts: sputnik.adm.crans.org
roles:
- bind-authoritative
# Deploy firewall
- hosts: gulp.adm.crans.org
roles: [] # TODO

View File

@ -0,0 +1,8 @@
---
- name: Install Bind9
apt:
update_cache: true
name: bind9
register: apt_result
retries: 3
until: apt_result is succeeded