Fixed typo and 'empty_password' key check
This commit is contained in:
parent
851a59e952
commit
441d3cb635
|
@ -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 -%}
|
||||||
|
|
Loading…
Reference in New Issue