mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-17 02:00:23 +00:00
fix for HMAC-SHA512 algorithm breakage. secret now quoted.
This commit is contained in:
parent
5e9007d8a8
commit
39829f0fe7
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