Sfoglia il codice sorgente

Merge pull request #191 from mgzabriskie/master

support password expiration
tags/v0.45.0
Niels Abspoel 6 anni fa
parent
commit
a2fe214817
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. +12
    -0
      users/init.sls

+ 12
- 0
users/init.sls Vedi File

@@ -167,6 +167,18 @@ users_{{ name }}_user:
- expire: {{ user['expire'] }}
{% endif %}
{% endif -%}
{% if 'mindays' in user %}
- mindays: {{ user.get('mindays', None) }}
{% endif %}
{% if 'maxdays' in user %}
- maxdays: {{ user.get('maxdays', None) }}
{% endif %}
{% if 'inactdays' in user %}
- inactdays: {{ user.get('inactdays', None) }}
{% endif %}
{% if 'warndays' in user %}
- warndays: {{ user.get('warndays', None) }}
{% endif %}
- remove_groups: {{ user.get('remove_groups', 'False') }}
- groups:
- {{ user_group }}

Loading…
Annulla
Salva