From e8b6319e0f7bf1f7e654c4e69ff5809f2c3d985d Mon Sep 17 00:00:00 2001 From: Vitaliy Kukharik Date: Fri, 13 Dec 2024 20:55:49 +0500 Subject: [PATCH] Download pgvectorscale archive in check_mode Added the check_mode: false parameter to the task responsible for downloading the pgvectorscale archive using the ansible.builtin.get_url module. This ensures that the task executes even in --check mode, preventing it from being skipped and ensuring the file is downloaded. This change addresses an error where subsequent tasks fail due to the missing downloaded archive. --- automation/roles/packages/tasks/extensions.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/automation/roles/packages/tasks/extensions.yml b/automation/roles/packages/tasks/extensions.yml index f052afc66..06b6dbad1 100644 --- a/automation/roles/packages/tasks/extensions.yml +++ b/automation/roles/packages/tasks/extensions.yml @@ -258,6 +258,7 @@ dest: "/tmp/{{ pgvectorscale_archive }}" timeout: 60 validate_certs: false + check_mode: false - name: Extract pgvectorscale package ansible.builtin.unarchive: