From f5169aa7fb0e6e00d3ad8291b25a64727f675471 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 8 May 2026 08:54:21 +0200 Subject: [PATCH] fix: install module --- tasks/install.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tasks/install.yaml b/tasks/install.yaml index f3b5f85..d7a90ec 100644 --- a/tasks/install.yaml +++ b/tasks/install.yaml @@ -7,13 +7,12 @@ # install zot - name: "install zot" - ansible.builtin.unarchive: - src: "https://github.com/project-zot/zot/releases/download/v{{ zot_version }}/zot-linux-amd64" + ansible.builtin.get_url: + url: "https://github.com/project-zot/zot/releases/download/v{{ zot_version }}/zot-linux-amd64" dest: "/usr/bin/zot" owner: "root" group: "root" mode: "0755" - remote_src: true # create zot dirs - name: "create zot dirs"