copr-infra: hash the root password

This commit is contained in:
Pavel Raiskup 2024-11-29 09:47:43 +01:00
parent f11eb65ffc
commit 482bfb8846

View file

@ -2,7 +2,7 @@
- name: setup the root password - name: setup the root password
ansible.builtin.user: ansible.builtin.user:
name: root name: root
password: "{{ copr_root_passwords[deployment_type][copr_machine_type] }}" password: "{{ copr_root_passwords[deployment_type][copr_machine_type] | password_hash('sha512') }}"
tags: tags:
- root_password - root_password