瀏覽代碼

classes fix

tags/0.4
Ales Komarek 8 年之前
父節點
當前提交
f035cf3cf1
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      salt/files/minion.conf

+ 4
- 2
salt/files/minion.conf 查看文件

@@ -26,7 +26,7 @@ grains:
{%- if minion.get('manage_roles', True) %}
roles:
{%- for key, value in pillar.items() %}
{%- if key != 'master' and key != 'system' and key != 'public_keys' and key != 'private_keys' and key != 'known_hosts' and key != '__reclass__' and key != '_secret' %}
{%- if key != 'master' and key != 'system' and key != 'public_keys' and key != 'private_keys' and key != 'known_hosts' and key != '__reclass__' and key != '_secret' and key != '_param' %}
{%- for subkey, subvalue in value.iteritems() %}
{%- if subvalue.enabled is defined %}
{%- if subvalue.enabled %}
@@ -38,8 +38,10 @@ grains:
{%- endfor %}
{%- endif %}
services:
{%- for key in pillar.__reclass__.applications %}
{%- for key, value in pillar.items() %}
{%- if key != 'master' and key != 'system' and key != 'public_keys' and key != 'private_keys' and key != 'known_hosts' and key != '__reclass__' and key != '_secret' and key != '_param' %}
- {{key}}
{%- endif %}
{%- endfor %}

grains_dirs:

Loading…
取消
儲存