ansible/roles/root_account/tasks/main.yml
Jeltz 2f3612fd8e
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Deploy SSH CA everywhere and set root password
2021-12-15 17:15:57 +01:00

7 lines
123 B
YAML

---
- name: Set root password
user:
name: root
shell: "{{ root_shell }}"
password: "{{ root_password }}"
...