You've already forked ansible-role-bind9
							
							fix(statics): export statics channel for localhost by default
	
		
			
	
		
	
	
		
	
		
			Some checks reported errors
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build encountered an error
				
			
		
		
	
	
				
					
				
			
		
			Some checks reported errors
		
		
	
	continuous-integration/drone/push Build encountered an error
				
			This commit is contained in:
		@@ -70,6 +70,15 @@ bind9_options:
 | 
			
		||||
 | 
			
		||||
  transfer_format: "many-answers"
 | 
			
		||||
 | 
			
		||||
bind9_statics:
 | 
			
		||||
  enabled: true
 | 
			
		||||
  channels:
 | 
			
		||||
  - inet: "127.0.0.1"
 | 
			
		||||
    port: "8053"
 | 
			
		||||
    acls:
 | 
			
		||||
    - "localhost"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
bind9_tsigkeys: []
 | 
			
		||||
# - name: "name"
 | 
			
		||||
#   algorithm: "algorithm"
 | 
			
		||||
 
 | 
			
		||||
@@ -234,4 +234,16 @@ options {
 | 
			
		||||
  version none;
 | 
			
		||||
 | 
			
		||||
  zone-statistics yes;
 | 
			
		||||
};
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
{% if bind9_statics.enabled is defined and bind9_statics.enabled is true %}
 | 
			
		||||
statistics-channels {
 | 
			
		||||
{% for channel in bind9_statics.channels %}
 | 
			
		||||
  inet {{ channel.inet }} port {{ channel.port }} allow {
 | 
			
		||||
{% for acl in channel.acls %}
 | 
			
		||||
    {{ acl }};
 | 
			
		||||
{% endfor %}
 | 
			
		||||
  };
 | 
			
		||||
{% endfor %}
 | 
			
		||||
};
 | 
			
		||||
{% endif %}
 | 
			
		||||
		Reference in New Issue
	
	Block a user