blob: b96d1a0e2a58593ee7daf6a96cc9543fc7241ffb [file] [log] [blame]
---
# tasks file for opdk-setup-local-repository
- block:
- name: Download archive
fetch:
src: '{{ archive_path }}'
dest: '{{ local_resource_path }}/{{ archive_name }}'
flat: yes
register: result
rescue:
- name: First scp download attempt failed, trying with rsync
synchronize:
mode: pull
src: '{{ archive_path }}'
dest: '{{ local_resource_path }}/{{ archive_name }}'
register: result
always:
- name: Download archive status report
debug:
var: result