Robert Kaussow
84f59382c1
All checks were successful
continuous-integration/drone/push Build is passing
26 lines
955 B
YAML
26 lines
955 B
YAML
---
|
|
- block:
|
|
# use system users and groups to prevent duplicate ids
|
|
# this is a workaround because udm_user not working
|
|
- name: Create groups
|
|
group:
|
|
name: "{{ item }}"
|
|
system: "yes"
|
|
state: present
|
|
loop: "{{ users_default_groups }}"
|
|
|
|
- name: Create users
|
|
user:
|
|
name: "{{ item.name }}"
|
|
groups: "{{ item.groups | default([]) | join(',') or omit }}"
|
|
append: "{{ True if (item.groups | default([]) | length > 0) else False }}"
|
|
password: "{{ item.password | password_hash('sha512',65534 | random(seed=inventory_hostname) | string) if item.password is defined else '*' }}"
|
|
password_expire_min: "{{ item.password_expire_min | default(users_pass_min_day) }}"
|
|
shell: "{{ item.shell | default('/bin/bash') }}"
|
|
system: "yes"
|
|
loop: "{{ users_default_users }}"
|
|
loop_control:
|
|
label: "{{ item.name }}"
|
|
become: True
|
|
become_user: root
|