Remove check for openvswitch package.

The package task does ensure that a package is installed,
when the intention of this task was to simply check if
the openvswitch package was installed. However, if it's
installed, Ansible will try to install the latest available
version and that update needs to be handled in the Undercloud
upgrade itself, not in the previous steps. For that reason,
this patch removes the task and relies on the following one
which checks that the OpenVSwitch service is running to fail
if the package wasn't installed.

Change-Id: I542b82b0bec05faf320861027f2f51572fe931c2
This commit is contained in:
Jose Luis Franco Arza 2019-06-28 13:10:32 +02:00
parent 9ac1e58fe6
commit b5f00e5c3e
1 changed files with 0 additions and 5 deletions

View File

@ -1,9 +1,4 @@
---
- name: Ensure Openvswitch is installed
package:
name: "{{ 'openvswitch' if use_oooq|bool else 'rhosp-openvswitch' }}"
state: present
- name: Ensure Openvswitch is enabled and running
service:
name: openvswitch