Merge pull request #79 from iamseth/master
Adding support for the enforce_password option.
This commit is contained in:
commit
5e91782cbe
|
@ -7,6 +7,7 @@ users:
|
|||
buser:
|
||||
fullname: B User
|
||||
password: $6$w.............
|
||||
enforce_password: True
|
||||
home: /custom/buser
|
||||
createhome: True
|
||||
manage_vimrc: False
|
||||
|
|
|
@ -72,6 +72,9 @@ users_{{ name }}_user:
|
|||
{% if 'password' in user -%}
|
||||
- password: '{{ user['password'] }}'
|
||||
{% endif -%}
|
||||
{% if 'enforce_password' in user -%}
|
||||
- enforce_password: '{{ user['enforce_password'] }}'
|
||||
{% endif -%}
|
||||
{% if user.get('system', False) -%}
|
||||
- system: True
|
||||
{% endif -%}
|
||||
|
|
Loading…
Reference in New Issue