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:
@ -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