Browse Source

Merge pull request #28 from eedgar/master

Add Password if the state supports it.
tags/v0.45.0
Seth House 10 years ago
parent
commit
3746de7896
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

## Full list of pillar values ## Full list of pillar values
buser: buser:
fullname: B User fullname: B User
password: $6$w.............
home: /custom/buser home: /custom/buser
sudouser: True sudouser: True
sudo_rules: sudo_rules:

+ 3
- 0
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 -%}
- password: {{ user['password'] }}
{% endif -%}
{% if 'prime_group' in user and 'gid' in user['prime_group'] -%} {% if 'prime_group' in user and 'gid' in user['prime_group'] -%}
- gid: {{ user['prime_group']['gid'] }} - gid: {{ user['prime_group']['gid'] }}
{% else -%} {% else -%}

Loading…
Cancel
Save