Fixed typo and 'empty_password' key check

This commit is contained in:
outime 2015-09-27 17:41:51 +02:00
parent 851a59e952
commit 441d3cb635
1 changed files with 2 additions and 2 deletions

View File

@ -78,10 +78,10 @@ users_{{ name }}_user:
{% if 'uid' in user -%} {% if 'uid' in user -%}
- uid: {{ user['uid'] }} - uid: {{ user['uid'] }}
{% endif -%} {% endif -%}
{% if 'password in user -%} {% if 'password' in user -%}
- password: '{{ user['password'] }}' - password: '{{ user['password'] }}'
{% endif -%} {% endif -%}
{% if empty_password is defined -%} {% if 'empty_password' in user -%}
- empty_password: {{ user['empty_password'] }} - empty_password: {{ user['empty_password'] }}
{% endif -%} {% endif -%}
{% if 'enforce_password' in user -%} {% if 'enforce_password' in user -%}