Browse Source

Adds 'empty_password' statement for states.user.present

tags/v0.45.0
outime 9 years ago
parent
commit
851a59e952
2 changed files with 7 additions and 1 deletions
  1. +3
    -0
      pillar.example
  2. +4
    -1
      users/init.sls

+ 3
- 0
pillar.example View File

fullname: B User fullname: B User
password: $6$w............. password: $6$w.............
enforce_password: True enforce_password: True
# 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
home: /custom/buser home: /custom/buser
createhome: True createhome: True
roomnumber: "A-1" roomnumber: "A-1"

+ 4
- 1
users/init.sls View File

{% 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 -%}
- empty_password: {{ user['empty_password'] }}
{% endif -%}
{% if 'enforce_password' in user -%} {% if 'enforce_password' in user -%}
- enforce_password: {{ user['enforce_password'] }} - enforce_password: {{ user['enforce_password'] }}
{% endif -%} {% endif -%}

Loading…
Cancel
Save