2024-01-19 00:27:49 +01:00

9 lines
241 B
YAML

---
- name: change root user password in container
ansible.builtin.shell:
cmd: |-
incus exec {{ lte_container_name }} -- \
bash -c \
'echo "root:{{ lte_container_root_pwd }}" | chpasswd'
changed_when: false