소스 검색

known_hosts: sort IP addresses

in order to prevent unnecessary changes due to
random ordering of dig results.
master
Alexander Weidinger 7 년 전
부모
커밋
70461403cb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      openssh/files/ssh_known_hosts

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

@@ -22,7 +22,7 @@
{%- set ip4 = salt['dig.A'](host) -%}
{%- set ip6 = salt['dig.AAAA'](host) -%}
{%- set names = [host_names.get(host, host)] -%}
{%- for ip in ip4 + ip6 -%}
{%- for ip in (ip4 + ip6)|sort -%}
{%- do names.append(ip) -%}
{%- for alias in aliases_ips.get(ip, []) -%}
{%- if alias not in names -%}

Loading…
취소
저장