centos-install.yml 959 B

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