undocumented updates.

This commit is contained in:
2019-11-28 18:29:16 +01:00
parent 4bfc548e13
commit 27e060fc65
11 changed files with 1923 additions and 18 deletions

View File

@ -54,7 +54,7 @@
name: '{{ item.name }}'
state: present
gid: '{{ item.group_id | default(omit) }}'
loop: "{{ default_user }}"
loop: "{{ extra_user }}"
loop_control:
label: '{{ item.name }}'
when:
@ -73,7 +73,7 @@
shell: '{{ item.shell|d("/bin/bash") }}'
password: "{{ item.password }}"
update_password: on_create
loop: "{{ default_user }}"
loop: "{{ extra_user }}"
loop_control:
label: '{{ item.name }}'
when: extra_user is defined and extra_user|length > 0