|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% for group in user.get('groups', []) %} |
|
|
{% for group in user.get('groups', []) %} |
|
|
users_{{ name }}_{{ group }}_group: |
|
|
users_{{ name }}_{{ group }}_group: |
|
|
group: |
|
|
|
|
|
|
|
|
group.present: |
|
|
- name: {{ group }} |
|
|
- name: {{ group }} |
|
|
- present |
|
|
|
|
|
|
|
|
{% if group == 'sudo' %} |
|
|
|
|
|
- system: True |
|
|
|
|
|
{% endif %} |
|
|
{% endfor %} |
|
|
{% endfor %} |
|
|
|
|
|
|
|
|
users_{{ name }}_user: |
|
|
users_{{ name }}_user: |
|
|
|
|
|
|
|
|
- createhome: False |
|
|
- createhome: False |
|
|
{% endif %} |
|
|
{% endif %} |
|
|
{% if 'expire' in user -%} |
|
|
{% if 'expire' in user -%} |
|
|
|
|
|
{% if grains['kernel'].endswith('BSD') and |
|
|
|
|
|
user['expire'] < 157766400 %} |
|
|
|
|
|
{# 157762800s since epoch equals 01 Jan 1975 00:00:00 UTC #} |
|
|
|
|
|
- expire: {{ user['expire'] * 86400 }} |
|
|
|
|
|
{% elif grains['kernel'] == 'Linux' and |
|
|
|
|
|
user['expire'] > 84006 %} |
|
|
|
|
|
{# 2932896 days since epoch equals 9999-12-31 #} |
|
|
|
|
|
- expire: {{ (user['expire'] / 86400) | int}} |
|
|
|
|
|
{% else %} |
|
|
- expire: {{ user['expire'] }} |
|
|
- expire: {{ user['expire'] }} |
|
|
|
|
|
{% endif %} |
|
|
{% endif -%} |
|
|
{% endif -%} |
|
|
- remove_groups: {{ user.get('remove_groups', 'False') }} |
|
|
- remove_groups: {{ user.get('remove_groups', 'False') }} |
|
|
- groups: |
|
|
- groups: |
|
|
|
|
|
|
|
|
file.managed: |
|
|
file.managed: |
|
|
- name: {{ home }}/.ssh/authorized_keys |
|
|
- name: {{ home }}/.ssh/authorized_keys |
|
|
- user: {{ name }} |
|
|
- user: {{ name }} |
|
|
- group: {{ name }} |
|
|
|
|
|
|
|
|
- group: {{ user_group }} |
|
|
- mode: 600 |
|
|
- mode: 600 |
|
|
{% if 'ssh_auth_file' in user %} |
|
|
{% if 'ssh_auth_file' in user %} |
|
|
- contents: | |
|
|
- contents: | |