bind-formula/bind/files/debian/default
matthew-parlette 19a6d01b54 Fix protocol output line.
Fixes #46
2015-11-05 17:08:22 -05:00

12 lines
296 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(' ') }}"