mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-15 17:20:21 +00:00
Merge pull request #47 from matthew-parlette/master
Fix protocol output line
This commit is contained in:
commit
6a528d3782
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
{% set protocol = salt['pillar.get']('bind:config:protocol', False) -%}
|
||||
{% set param = ['-u bind'] -%}
|
||||
{% if protocol -%}
|
||||
{%- param.append('-' + protocol|string) -%}
|
||||
{{ param.append('-' + protocol|string) }}
|
||||
{% endif -%}
|
||||
# run resolvconf?
|
||||
RESOLVCONF=no
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% set protocol = salt['pillar.get']('bind:config:protocol', False) -%}
|
||||
{% set param = [] -%}
|
||||
{% if protocol -%}
|
||||
{%- param.append('-' + protocol|string) -%}
|
||||
{{ param.append('-' + protocol|string) }}
|
||||
{% endif -%}
|
||||
# ROOTDIR="/var/named/chroot"
|
||||
# KEYTAB_FILE="/dir/file"
|
||||
|
|
Loading…
Add table
Reference in a new issue