Skip to content

Commit

Permalink
Remove network-scripts-openvswitch 2.11 package before installing ovi…
Browse files Browse the repository at this point in the history
  • Loading branch information
dangel101 authored and mwperina committed Jul 4, 2022
1 parent 50e0bb9 commit a1b77e5
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,18 @@
- name: Configure advanced virtualization
import_tasks: advanced-virtualization.yml

- name: Remove network-scripts-openvswitch 2.11 package
shell: rpm -e --nodeps network-scripts-openvswitch2.11
ignore_errors: true
when:
- el_ver|int == 8
- ovirt_openvswitch_pre is defined
- ovirt_openvswitch_pre.version is version ('2.11', '==')

- name: Install ovirt-host package if it isn't installed
yum:
name: ovirt-host
state: latest
state: present
update_cache: yes
lock_timeout: 300
tags:
Expand All @@ -33,14 +41,6 @@
set_fact:
previous_vdsm_package: "{{ ansible_facts.packages['vdsm'] | first }}"

- name: Remove network-scripts-openvswitch 2.11 package
shell: rpm -e --nodeps network-scripts-openvswitch2.11
ignore_errors: true
when:
- el_ver|int == 8
- ovirt_openvswitch_pre is defined
- ovirt_openvswitch_pre is version ('2.11', '==')

- name: Upgrade packages
yum:
name: '*'
Expand Down

0 comments on commit a1b77e5

Please sign in to comment.