811f546ea6
* Add crun download_url and checksum * Change versioning format to crun native versioning * Download crun using download_file.yml * Get crun version from download defaults * Delegate crun binary copy task to crun role
12 lines
339 B
YAML
12 lines
339 B
YAML
---
|
|
- name: crun | Download crun binary
|
|
include_tasks: "../../../download/tasks/download_file.yml"
|
|
vars:
|
|
download: "{{ download_defaults | combine(downloads.crun) }}"
|
|
|
|
- name: Copy crun binary from download dir
|
|
copy:
|
|
src: "{{ local_release_dir }}/crun"
|
|
dest: "{{ crun_bin_dir }}/crun"
|
|
mode: 0755
|
|
remote_src: true
|