bind-formula/bind/files/debian/default
Rowcliffe Browne 82f4b63aa9 - templatize default file
- fix config.sls to match
- add example to pillar.example
2015-11-02 09:40:51 +08:00

12 lines
298 B
Text

{% set protocol = salt['pillar.get']('bind:config:protocol', False) -%}
{% set param = ['-u bind'] -%}
{% if protocol -%}
{%- param.append('-' + protocol|string) -%}
{% endif -%}
# run resolvconf?
RESOLVCONF=no
# startup options for the server
# force ipv4 only
OPTIONS="{{ param|join(' ') }}"