diff --git a/roles/database/molecule/default/prepare.yml b/roles/database/molecule/default/prepare.yml index b89a35b8ff052860e49c4e0d1048cdaae3d271bd..3a369193a203c05e6f57462d37f7e1d07254da99 100644 --- a/roles/database/molecule/default/prepare.yml +++ b/roles/database/molecule/default/prepare.yml @@ -7,11 +7,11 @@ tasks: - name: Install python for Ansible - raw: test -e /usr/bin/python3 || (apt -y update && apt install -y python3-minimal) + ansible.builtin.raw: test -e /usr/bin/python3 || (apt -y update && apt install -y python3-minimal) changed_when: false - name: Update all caches to avoid errors due to missing remote archives - apt: + ansible.builtin.apt: update_cache: true changed_when: false