fix: correct quoting in condition for removing legacy Docker APT source

This commit is contained in:
2025-06-29 22:54:20 -05:00
parent cb732c3bc1
commit b6c30a891a

View File

@@ -20,7 +20,7 @@
file:
path: "{{ docker_repo_file }}"
state: absent
when: docker_installed.rc != 0 or "'signed-by=" not in lookup('file', docker_repo_file, errors='ignore')"
when: docker_installed.rc != 0 or "signed-by=" not in lookup("file", docker_repo_file, errors="ignore")
- name: Ensure keyring directory exists
file: