| --- |
| # tasks file for apigee-opdk-setup-local-repository |
| - block: |
| - name: Download archive |
| fetch: |
| src: '{{ archive_path }}' |
| dest: '{{ local_resource_path }}/{{ archive_name }}' |
| flat: yes |
| register: result |
| |
| rescue: |
| - name: Install rsync if its missing |
| yum: |
| name: rsync |
| state: present |
| |
| - 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 |