소스 검색

Merge pull request #54 from ketzacoatl/patch-1

Add support for Host definitions in ssh_config
tags/v0.41.0
puneet kandhari 9 년 전
부모
커밋
a2408d5e1e
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. +9
    -0
      openssh/files/ssh_config

+ 9
- 0
openssh/files/ssh_config 파일 보기

@@ -68,6 +68,15 @@
{{ option(' PermitLocalCommand', 'no') }}
{{ option(' VisualHostKey', 'no') }}

{%- if 'Hosts' in ssh_config %}
{%- do processed_options.append('Hosts') %}
{% for host, conf in ssh_config['Hosts'].items() %}
Host {{ host }}
{%- for key, val in conf.items() %}
{{ key }} {{ val }}{%- endfor %}
{%- endfor %}
{%- endif %}

{# Handling unknown in salt template options #}
{%- for keyword in ssh_config.keys() %}
{#- Matches have to be at the bottom and should be handled differently -#}

Loading…
취소
저장