mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-16 17:50:23 +00:00
Merge pull request #41 from cybacolt/master
fix for HMAC-SHA512 algorithm breakage. secret now quoted.
This commit is contained in:
commit
a474bd188b
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@
|
||||||
{% for key,args in salt['pillar.get']('bind:keys', {}).iteritems() -%}
|
{% for key,args in salt['pillar.get']('bind:keys', {}).iteritems() -%}
|
||||||
key "{{ key }}" {
|
key "{{ key }}" {
|
||||||
algorithm {{ args['algorithm'] | default('HMAC-MD5.SIG-ALG.REG.INT') }};
|
algorithm {{ args['algorithm'] | default('HMAC-MD5.SIG-ALG.REG.INT') }};
|
||||||
secret {{ args['secret'] }};
|
secret "{{ args['secret'] }}";
|
||||||
};
|
};
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue