download_bins.yml 778 B

123456789101112131415161718192021222324252627
  1. ---
  2. - name: Download Bins | Create directory for current Contiv release
  3. file:
  4. path: "{{ contiv_current_release_directory }}"
  5. state: directory
  6. - name: Install bzip2
  7. yum:
  8. name: bzip2
  9. state: installed
  10. - name: Download Bins | Download Contiv tar file
  11. get_url:
  12. url: "{{ contiv_download_url }}"
  13. dest: "{{ contiv_current_release_directory }}"
  14. mode: 0755
  15. validate_certs: False
  16. environment:
  17. http_proxy: "{{ http_proxy|default('') }}"
  18. https_proxy: "{{ https_proxy|default('') }}"
  19. no_proxy: "{{ no_proxy|default('') }}"
  20. - name: Download Bins | Extract Contiv tar file
  21. unarchive:
  22. src: "{{ contiv_current_release_directory }}/netplugin-{{ contiv_version }}.tar.bz2"
  23. dest: "{{ contiv_current_release_directory }}"
  24. copy: no