[bind-recursice] Added bind-recursive role
parent
d0b978098a
commit
7ad6b123af
|
@ -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
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
- name: Install Bind9
|
||||
apt:
|
||||
update_cache: true
|
||||
name: bind9
|
||||
register: apt_result
|
||||
retries: 3
|
||||
until: apt_result is succeeded
|
Loading…
Reference in New Issue