소스 검색

Merge pull request #188 from baby-gnu/fix/omit-ip-address-on-older-platform

fix(jinja): omit_ip_address don't work on some platform
tags/v1.2.2
Imran Iqbal 4 년 전
부모
커밋
27afecb96a
No account linked to committer's email address
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      openssh/files/default/ssh_known_hosts

+ 1
- 1
openssh/files/default/ssh_known_hosts 파일 보기

@@ -6,7 +6,7 @@
{%- macro known_host_entry(host, host_names, keys, include_localhost, omit_ip_address) %}

{#- Get IPv4 and IPv6 addresses from the DNS #}
{%- if not (omit_ip_address is sameas true or host in omit_ip_address) %}
{%- if not ((omit_ip_address is sameas true) or (host in omit_ip_address)) %}
{%- set ip4 = salt['dig.A'](host) -%}
{%- set ip6 = salt['dig.AAAA'](host) -%}
{%- else %}

Loading…
취소
저장