浏览代码

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 %}

正在加载...
取消
保存