From b6c30a891ab15516196f0b0e8e904a64c1a1e14e Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Sun, 29 Jun 2025 22:54:20 -0500 Subject: [PATCH] fix: correct quoting in condition for removing legacy Docker APT source --- playbooks/install-standard-docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/install-standard-docker.yml b/playbooks/install-standard-docker.yml index 45768c6..84b5aaf 100644 --- a/playbooks/install-standard-docker.yml +++ b/playbooks/install-standard-docker.yml @@ -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: