Bläddra i källkod

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

Support for optional_groups
lookup-fix-3
Forrest 8 år sedan
förälder
incheckning
214f690af7
2 ändrade filer med 9 tillägg och 0 borttagningar
  1. +3
    -0
      pillar.example
  2. +6
    -0
      users/init.sls

+ 3
- 0
pillar.example Visa fil

@@ -42,6 +42,9 @@ users:
gid: 500
groups:
- users
optional_groups:
- some_groups_that_might
- not_exist_on_all_minions
ssh_key_type: rsa
# You can inline the private keys ...
ssh_keys:

+ 6
- 0
users/init.sls Visa fil

@@ -135,6 +135,12 @@ users_{{ name }}_user:
{% for group in user.get('groups', []) -%}
- {{ group }}
{% endfor %}
{% if 'optional_groups' in user %}
- optional_groups:
{% for optional_group in user['optional_groups'] -%}
- {{optional_group}}
{% endfor %}
{% endif %}
- require:
- group: {{ user_group }}
{% for group in user.get('groups', []) -%}

Laddar…
Avbryt
Spara