123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- ---
- - name: Download Bins | Create directory for current Contiv release
- file:
- path: "{{ contiv_current_release_directory }}"
- state: directory
- - name: Install bzip2
- yum:
- name: bzip2
- state: installed
- register: result
- until: result | success
- - name: Download Bins | Download Contiv tar file
- get_url:
- url: "{{ contiv_download_url }}"
- dest: "{{ contiv_current_release_directory }}"
- mode: 0755
- validate_certs: False
- environment:
- http_proxy: "{{ http_proxy|default('') }}"
- https_proxy: "{{ https_proxy|default('') }}"
- no_proxy: "{{ no_proxy|default('') }}"
- - name: Download Bins | Extract Contiv tar file
- unarchive:
- src: "{{ contiv_current_release_directory }}/netplugin-{{ contiv_version }}.tar.bz2"
- dest: "{{ contiv_current_release_directory }}"
- copy: no
- - name: Download Bins | Download cni tar file
- get_url:
- url: "{{ cni_bin_url }}"
- dest: "{{ cni_download_dir }}"
- mode: 0755
- validate_certs: False
- environment:
- http_proxy: "{{ http_proxy|default('') }}"
- https_proxy: "{{ https_proxy|default('') }}"
- no_proxy: "{{ no_proxy|default('') }}"
- register: download_file
- - name: Download Bins | Extract cni tar file
- unarchive:
- src: "{{ download_file.dest }}"
- dest: "{{ cni_download_dir }}"
- copy: no
- when: download_file.changed
|