mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-13 21:34:40 +03:00
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
12 lines
362 B
YAML
12 lines
362 B
YAML
---
|
|
- name: Extract_file | Unpacking archive
|
|
unarchive:
|
|
src: "{{ download.dest }}"
|
|
dest: "{{ download.dest | dirname }}"
|
|
owner: "{{ download.owner | default(omit) }}"
|
|
mode: "{{ download.mode | default(omit) }}"
|
|
copy: no
|
|
extra_opts: "{{ download.unarchive_extra_opts | default(omit) }}"
|
|
when:
|
|
- download.unarchive | default(false)
|