Skip to content
Snippets Groups Projects
Commit dbeff436 authored by Benjamin Graillot's avatar Benjamin Graillot
Browse files

[bind-authoritative] Added bind-authoritative role

parent 56977717
No related branches found
No related tags found
No related merge requests found
...@@ -13,11 +13,16 @@ ...@@ -13,11 +13,16 @@
- wireguard - wireguard
- motd-role - motd-role
# Deploy DNS server # Deploy recursive DNS cache server
- hosts: odlyd.adm.crans.org - hosts: odlyd.adm.crans.org
roles: roles:
- bind-recursive - bind-recursive
# Deplay authoritative DNS server
- hosts: sputnik.adm.crans.org
roles:
- bind-authoritative
# Deploy firewall # Deploy firewall
- hosts: gulp.adm.crans.org - hosts: gulp.adm.crans.org
roles: [] # TODO roles: [] # TODO
......
---
- name: Install Bind9
apt:
update_cache: true
name: bind9
register: apt_result
retries: 3
until: apt_result is succeeded
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment