Parcourir la source

fix options setting in resolv

tags/2016.12
Marek Celoud il y a 8 ans
Parent
révision
f6cd1921c1
2 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. +4
    -0
      README.rst
  2. +3
    -1
      linux/files/resolv.conf

+ 4
- 0
README.rst Voir le fichier

@@ -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 Voir le fichier

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

Chargement…
Annuler
Enregistrer