[bind-authoritative] Added bind-authoritative role
							parent
							
								
									56977717c1
								
							
						
					
					
						commit
						dbeff436f0
					
				| 
						 | 
				
			
			@ -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
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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