[bind-recursice] Added bind-recursive role

certbot_on_virtu
_benjamin 2019-06-22 21:46:12 +02:00
parent d0b978098a
commit 7ad6b123af
2 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,6 @@
---
# Deploy tunnel
- hosts: boeing.adm.crans.org
- hosts: boeing.adm.crans.org,sputnik.adm.crans.org
vars:
# Debian mirror on adm
debian_mirror: http://mirror.adm.crans.org/debian
@ -15,7 +15,9 @@
# Deploy DNS server
- hosts: odlyd.adm.crans.org
roles: [] # TODO
roles:
- bind-recursive
# Deploy firewall
- hosts: gulp.adm.crans.org

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