Skip to content
Snippets Groups Projects
Commit cde11bc1 authored by Nitin Madhok's avatar Nitin Madhok
Browse files

Merge pull request #99 from aboe76/mine_get_master

add mine_get function to master config
parents ed0f2fab b8e53771
Branches
No related tags found
No related merge requests found
......@@ -811,12 +811,30 @@ peer_run:
# The example below enables minion foo.example.com to get 'network.interfaces' mine
# data only, minions web* to get all network.* and disk.* mine data and all other
# minions won't get any mine data.
{% if 'mine_get' in cfg_master -%}
mine_get:
{%- for minion, data in cfg_master['mine_get']|dictsort %}
{{ minion }}:
{%- for command in data %}
- {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
{%- endfor -%}
{%- endfor -%}
{% elif 'mine_get' in cfg_salt -%}
mine_get:
{%- for minion, data in cfg_salt['mine_get']|dictsort %}
{{ minion }}:
{%- for command in data %}
- {% raw %}'{% endraw %}{{ command }}{% raw %}'{% endraw %}
{%- endfor -%}
{%- endfor -%}
{% else -%}
# mine_get:
# foo.example.com:
# - network.interfaces
# web.*:
# - network.*
# - disk.*
{%- endif %}
##### Logging settings #####
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment