浏览代码

Host order fix

tags/2016.12
Ales Komarek 8 年前
父节点
当前提交
c00acb30e7
共有 1 个文件被更改,包括 21 次插入0 次删除
  1. +21
    -0
      linux/network/host.sls

+ 21
- 0
linux/network/host.sls 查看文件

@@ -10,6 +10,27 @@ linux_host_{{ name }}:
- ip: {{ host.address }}
- names: {{ host.names }}

{%- if host.address in grains.ipv4 %}

{%- if host.names.0|length > host.names.1|length %}
{%- set before = host.names.1 + " " + host.names.0 %}
{%- set after = host.names.0 + " " + host.names.1 %}
{%- else %}
{%- set before = host.names.0 + " " + host.names.1 %}
{%- set after = host.names.1 + " " + host.names.0 %}
{%- endif %}

mine.send:
module.run:
- name: file.replace
- path: /etc/hosts
- pattern: {{ before }}
- repl: {{ after }}
- watch:
- host: linux_host_{{ name }}

{%- endif %}

{%- endif %}

{%- endfor %}

正在加载...
取消
保存