소스 검색

fix options setting in resolv

tags/2016.12
Marek Celoud 8 년 전
부모
커밋
f6cd1921c1
2개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -0
      README.rst
  2. +3
    -1
      linux/files/resolv.conf

+ 4
- 0
README.rst 파일 보기

@@ -545,6 +545,10 @@ Setup resolv.conf, nameservers, domain and search domains
search:
- my.example.com
- example.com
options:
- ndots:5
- timeout:2
- attempts:2

Linux storage pillars
---------------------

+ 3
- 1
linux/files/resolv.conf 파일 보기

@@ -10,5 +10,7 @@ domain {{ network.resolv.domain }}
nameserver {{ nameserver }}
{%- endfor %}
{%- if network.resolv.get('options', False) %}
options {{ options|sort|join(' ') }}
{%- for option in network.resolv.options %}
options {{ option }}
{%- endfor %}
{%- endif %}

Loading…
취소
저장