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"