Browse Source

fix the path to authkeys

Allow user to specify aliased path (with %u)
master
Mathieu POTIER 8 years ago
parent
commit
760a2ad277
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      openssh/auth.sls

+ 2
- 2
openssh/auth.sls View File

@@ -39,7 +39,7 @@ include:
ssh_auth.present:
{{ print_ssh_auth(identifier, key) }}
{%- if 'sshd_config' in pillar and 'AuthorizedKeysFile' in pillar['sshd_config'] %}
- config: {{ pillar['sshd_config']['AuthorizedKeysFile'] }}
- config: '{{ pillar['sshd_config']['AuthorizedKeysFile'] }}'
{% endif -%}
- require:
- service: {{ openssh.service }}
@@ -48,7 +48,7 @@ include:
ssh_auth.absent:
{{ print_ssh_auth(identifier, key) }}
{%- if 'sshd_config' in pillar and 'AuthorizedKeysFile' in pillar['sshd_config'] %}
- config: {{ pillar['sshd_config']['AuthorizedKeysFile'] }}
- config: '{{ pillar['sshd_config']['AuthorizedKeysFile'] }}'
{% endif -%}
{%- endif -%}
{%- endfor -%}

Loading…
Cancel
Save