15 lines
261 B
YAML
15 lines
261 B
YAML
---
|
|
- name: Set root password
|
|
user:
|
|
name: root
|
|
shell: "{{ root_shell }}"
|
|
password: "{{ root_password }}"
|
|
|
|
- name: Setup bashrc for root
|
|
template:
|
|
src: bashrc.j2
|
|
dest: /root/.bashrc
|
|
owner: root
|
|
group: root
|
|
mode: u=r,g=,o=
|
|
...
|