Browse Source

replace deprecated unarchive.copy with unarchive.remote_src (#11207)

pull/11337/merge
Alexander 7 months ago
committed by GitHub
parent
commit
616e4b40db
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/download/tasks/extract_file.yml

2
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)
Loading…
Cancel
Save