123456789101112131415161718192021222324252627282930313233343536373839 |
- ---
- - name: PkgMgr RHEL/CentOS | Install net-tools pkg for route
- yum:
- pkg=net-tools
- state=latest
- register: result
- until: result | success
- - name: PkgMgr RHEL/CentOS | Get openstack ocata rpm
- get_url:
- url: https://repos.fedorapeople.org/repos/openstack/openstack-ocata/rdo-release-ocata-2.noarch.rpm
- dest: /tmp/rdo-release-ocata-2.noarch.rpm
- validate_certs: False
- environment:
- http_proxy: "{{ http_proxy|default('') }}"
- https_proxy: "{{ https_proxy|default('') }}"
- no_proxy: "{{ no_proxy|default('') }}"
- tags:
- - ovs_install
- - name: PkgMgr RHEL/CentOS | Install openstack ocata rpm
- yum: name=/tmp/rdo-release-ocata-2.noarch.rpm state=present
- tags:
- - ovs_install
- register: result
- until: result | success
- - name: PkgMgr RHEL/CentOS | Install ovs
- yum:
- pkg=openvswitch-2.5.0-2.el7.x86_64
- state=present
- environment:
- http_proxy: "{{ http_proxy|default('') }}"
- https_proxy: "{{ https_proxy|default('') }}"
- no_proxy: "{{ no_proxy|default('') }}"
- tags:
- - ovs_install
- register: result
- until: result | success
|