Merge pull request #136 from Takios/master

Add support for hash_password
This commit is contained in:
Forrest 2016-12-01 09:07:14 -08:00 committed by GitHub
commit bd4ffe5f5b
2 changed files with 4 additions and 0 deletions

View File

@ -11,6 +11,7 @@ users:
# WARNING: If 'empty_password' is set to True, the 'password' statement
# will be ignored by enabling password-less login for the user.
empty_password: False
hash_password: False
system: False
home: /custom/buser
homedir_owner: buser

View File

@ -93,6 +93,9 @@ users_{{ name }}_user:
{% if 'enforce_password' in user -%}
- enforce_password: {{ user['enforce_password'] }}
{% endif -%}
{% if 'hash_password' in user -%}
- hash_password: {{ user['hash_password'] }}
{% endif -%}
{% if user.get('system', False) -%}
- system: True
{% endif -%}