centos-install.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ---
  2. - name: PkgMgr RHEL/CentOS | Install net-tools pkg for route
  3. yum:
  4. pkg=net-tools
  5. state=latest
  6. register: result
  7. until: result is succeeded
  8. - name: PkgMgr RHEL/CentOS | Get openstack ocata rpm
  9. get_url:
  10. url: https://repos.fedorapeople.org/repos/openstack/openstack-ocata/rdo-release-ocata-2.noarch.rpm
  11. dest: /tmp/rdo-release-ocata-2.noarch.rpm
  12. validate_certs: False
  13. environment:
  14. http_proxy: "{{ http_proxy|default('') }}"
  15. https_proxy: "{{ https_proxy|default('') }}"
  16. no_proxy: "{{ no_proxy|default('') }}"
  17. tags:
  18. - ovs_install
  19. - name: PkgMgr RHEL/CentOS | Install openstack ocata rpm
  20. yum: name=/tmp/rdo-release-ocata-2.noarch.rpm state=present
  21. tags:
  22. - ovs_install
  23. register: result
  24. until: result is succeeded
  25. - name: PkgMgr RHEL/CentOS | Install ovs
  26. yum:
  27. pkg=openvswitch
  28. state=present
  29. environment:
  30. http_proxy: "{{ http_proxy|default('') }}"
  31. https_proxy: "{{ https_proxy|default('') }}"
  32. no_proxy: "{{ no_proxy|default('') }}"
  33. tags:
  34. - ovs_install
  35. register: result
  36. until: result is succeeded