You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
333 B

  1. ---
  2. - name: Crun | Download crun binary
  3. include_tasks: "../../../download/tasks/download_file.yml"
  4. vars:
  5. download: "{{ download_defaults | combine(downloads.crun) }}"
  6. - name: Copy crun binary from download dir
  7. copy:
  8. src: "{{ downloads.crun.dest }}"
  9. dest: "{{ bin_dir }}/crun"
  10. mode: "0755"
  11. remote_src: true