summaryrefslogtreecommitdiff
path: root/roles/network/bind/templates/stats.j2
blob: 06a1f514d9eac02a35f0a081d6fce6613c010ec5 (plain) (blame)
1
2
3
4
5
6
7
// Stats

statistics-channels {
{% for channel in bind_stats_channels %}
  inet {{ channel.addr | default('*') }}{% if 'port' in channel %} port {{ channel.port }}{% endif %}{% if 'allow' in channel %} allow { {{ channel.allow | join('; ') }}; }{% endif %};
{% endfor %}
};