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

pull/11337/merge
Alexander 2024-10-14 09:20:21 +02:00 committed by GitHub
parent 4e62e36f3a
commit 616e4b40db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
dest: "{{ download.dest | dirname }}" dest: "{{ download.dest | dirname }}"
owner: "{{ download.owner | default(omit) }}" owner: "{{ download.owner | default(omit) }}"
mode: "{{ download.mode | default(omit) }}" mode: "{{ download.mode | default(omit) }}"
copy: false remote_src: true
extra_opts: "{{ download.unarchive_extra_opts | default(omit) }}" extra_opts: "{{ download.unarchive_extra_opts | default(omit) }}"
when: when:
- download.unarchive | default(false) - download.unarchive | default(false)