From 616e4b40dbbb5ffa637d31d78ba2253645782b87 Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 14 Oct 2024 09:20:21 +0200 Subject: [PATCH] replace deprecated unarchive.copy with unarchive.remote_src (#11207) --- roles/download/tasks/extract_file.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/download/tasks/extract_file.yml b/roles/download/tasks/extract_file.yml index ce7536f4f..fbe478ccf 100644 --- a/roles/download/tasks/extract_file.yml +++ b/roles/download/tasks/extract_file.yml @@ -5,7 +5,7 @@ dest: "{{ download.dest | dirname }}" owner: "{{ download.owner | default(omit) }}" mode: "{{ download.mode | default(omit) }}" - copy: false + remote_src: true extra_opts: "{{ download.unarchive_extra_opts | default(omit) }}" when: - download.unarchive | default(false)