We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f5e116 + 0ad7d07 commit a2fe214Copy full SHA for a2fe214
1 file changed
users/init.sls
@@ -167,6 +167,18 @@ users_{{ name }}_user:
167
- expire: {{ user['expire'] }}
168
{% endif %}
169
{% endif -%}
170
+ {% if 'mindays' in user %}
171
+ - mindays: {{ user.get('mindays', None) }}
172
+ {% endif %}
173
+ {% if 'maxdays' in user %}
174
+ - maxdays: {{ user.get('maxdays', None) }}
175
176
+ {% if 'inactdays' in user %}
177
+ - inactdays: {{ user.get('inactdays', None) }}
178
179
+ {% if 'warndays' in user %}
180
+ - warndays: {{ user.get('warndays', None) }}
181
182
- remove_groups: {{ user.get('remove_groups', 'False') }}
183
- groups:
184
- {{ user_group }}
0 commit comments