Ver código fonte

classes fix

tags/0.4
Ales Komarek 8 anos atrás
pai
commit
f035cf3cf1
1 arquivos alterados com 4 adições e 2 exclusões
  1. +4
    -2
      salt/files/minion.conf

+ 4
- 2
salt/files/minion.conf Ver arquivo

@@ -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:

Carregando…
Cancelar
Salvar