瀏覽代碼

Network resolf.conf handling

the handling as the Resolv.conf is generated and adapted, adapted.
previously the Resolv.conf was created and then through
Overwrite "network.system" in the interface.sls again.
With two search servers that should actually be included.
"search example.com. sudomain.example.com"
but it always became that
search ['example.com.', 'sudomain.example.com']

The resolv.conf was first created correctly but then overwritten again in the interface.sls.

The problem only arises if you don't want to have a "Domain:" in resov.conf
pull/220/head
preussal 4 年之前
父節點
當前提交
2847b797fd
共有 2 個文件被更改,包括 5 次插入5 次删除
  1. +3
    -3
      linux/network/init.sls
  2. +2
    -2
      linux/network/interface.sls

+ 3
- 3
linux/network/init.sls 查看文件

@@ -6,9 +6,6 @@ include:
{%- if network.host|length > 0 or network.get('purge_hosts', True) %}
- linux.network.host
{%- endif %}
{%- if network.resolv is defined %}
- linux.network.resolv
{%- endif %}
{%- if network.dpdk is defined %}
- linux.network.dpdk
{%- endif %}
@@ -24,4 +21,7 @@ include:
{%- if network.interface|length > 0 %}
- linux.network.interface
{%- endif %}
{%- if network.resolv is defined %}
- linux.network.resolv
{%- endif %}
- linux.network.proxy

+ 2
- 2
linux/network/interface.sls 查看文件

@@ -173,7 +173,7 @@ ovs_bond_{{ interface_name }}:
cmd.run:
- name: ovs-vsctl add-bond {{ interface.bridge }} {{ interface_name }} {{ interface.slaves }} bond_mode={{ interface.mode }}
- unless: ovs-vsctl show | grep -A 2 'Port.*{{ interface_name }}.'
- require:
- require:
- ovs_bridge_{{ interface.bridge }}_present

{%- elif interface.type == 'ovs_port' %}
@@ -349,7 +349,7 @@ remove_interface_{{ network }}_line2:

{%- endfor %}

{%- if interface.gateway is defined %}
{%- if interface.gateway is defined and network.resolv is not defined %}

linux_system_network:
network.system:

Loading…
取消
儲存