
User-management now creates users if they do not exist. This is to handle users that are created after this task runs. Change-Id: I12ea54dbf39d09af27fb4d944a61b9f71c3ead00
8 lines
293 B
YAML
8 lines
293 B
YAML
- name: "User Management | Modifying user settings for {{ item.name }}"
|
|
user:
|
|
name: "{{ item.name }}"
|
|
password: "{{ item.password }}"
|
|
password_lock: "{{ item.password_lock }}"
|
|
shell: "{{ item.shell }}"
|
|
loop: "{{ user_management }}"
|
|
when: run_context in item.run_contexts |