Browse Source

Merge pull request #125 from jraby/Support-for-optional_groups

Support for optional_groups
lookup-fix-3
Forrest 8 years ago
parent
commit
214f690af7
2 changed files with 9 additions and 0 deletions
  1. +3
    -0
      pillar.example
  2. +6
    -0
      users/init.sls

+ 3
- 0
pillar.example View File

gid: 500 gid: 500
groups: groups:
- users - users
optional_groups:
- some_groups_that_might
- not_exist_on_all_minions
ssh_key_type: rsa ssh_key_type: rsa
# You can inline the private keys ... # You can inline the private keys ...
ssh_keys: ssh_keys:

+ 6
- 0
users/init.sls View File

{% for group in user.get('groups', []) -%} {% for group in user.get('groups', []) -%}
- {{ group }} - {{ group }}
{% endfor %} {% endfor %}
{% if 'optional_groups' in user %}
- optional_groups:
{% for optional_group in user['optional_groups'] -%}
- {{optional_group}}
{% endfor %}
{% endif %}
- require: - require:
- group: {{ user_group }} - group: {{ user_group }}
{% for group in user.get('groups', []) -%} {% for group in user.get('groups', []) -%}

Loading…
Cancel
Save