centos-install.yml 913 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. - name: PkgMgr CentOS | Install net-tools pkg for route
  3. yum:
  4. pkg=net-tools
  5. state=latest
  6. - name: PkgMgr CentOS | Get openstack kilo rpm
  7. get_url:
  8. url: https://repos.fedorapeople.org/repos/openstack/openstack-kilo/rdo-release-kilo-2.noarch.rpm
  9. dest: /tmp/rdo-release-kilo-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 CentOS | Install openstack kilo rpm
  18. yum: name=/tmp/rdo-release-kilo-2.noarch.rpm state=present
  19. tags:
  20. - ovs_install
  21. - name: PkgMgr CentOS | Install ovs
  22. yum:
  23. pkg=openvswitch
  24. state=latest
  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