Browse Source

Add support for hash_password

lookup-fix-3
Fabian Niepelt 8 years ago
parent
commit
153d07452c
2 changed files with 4 additions and 0 deletions
  1. +1
    -0
      pillar.example
  2. +3
    -0
      users/init.sls

+ 1
- 0
pillar.example View File

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

+ 3
- 0
users/init.sls View File

{% if 'enforce_password' in user -%} {% if 'enforce_password' in user -%}
- enforce_password: {{ user['enforce_password'] }} - enforce_password: {{ user['enforce_password'] }}
{% endif -%} {% endif -%}
{% if 'hash_password' in user -%}
- hash_password: {{ user['hash_password'] }}
{% endif -%}
{% if user.get('system', False) -%} {% if user.get('system', False) -%}
- system: True - system: True
{% endif -%} {% endif -%}

Loading…
Cancel
Save