2019-11-03 17:19:53 +00:00
|
|
|
---
|
|
|
|
- block:
|
|
|
|
- name: Create common groups
|
|
|
|
group:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
2019-11-03 17:48:04 +00:00
|
|
|
loop: "{{ users_default_groups }}"
|
2019-11-03 17:19:53 +00:00
|
|
|
|
|
|
|
- name: Create common users
|
|
|
|
user:
|
|
|
|
name: "{{ item.name }}"
|
|
|
|
groups: "{{ item.groups | default([]) | join(',') or omit }}"
|
|
|
|
append: yes
|
2019-11-03 19:26:53 +00:00
|
|
|
password: "{{ item.password | password_hash('sha512',65534 | random(seed=inventory_hostname) | string) if item.password is defined else omit }}"
|
2019-11-03 17:19:53 +00:00
|
|
|
shell: "{{ item.shell | default('/bin/bash') }}"
|
2019-11-03 17:48:04 +00:00
|
|
|
loop: "{{ users_default_users }}"
|
2019-11-03 17:19:53 +00:00
|
|
|
loop_control:
|
|
|
|
label: "{{ item.name }}"
|
|
|
|
become: True
|
|
|
|
become_user: root
|