|
@@ -13,6 +13,8 @@
|
|
when:
|
|
when:
|
|
- r_openshift_excluder_enable_docker_excluder | bool
|
|
- r_openshift_excluder_enable_docker_excluder | bool
|
|
- ansible_pkg_mgr == "yum"
|
|
- ansible_pkg_mgr == "yum"
|
|
|
|
+ register: result
|
|
|
|
+ until: result | success
|
|
|
|
|
|
|
|
|
|
# For DNF we do not need the "*" and if we add it, it causes an error because
|
|
# For DNF we do not need the "*" and if we add it, it causes an error because
|
|
@@ -26,6 +28,8 @@
|
|
when:
|
|
when:
|
|
- r_openshift_excluder_enable_docker_excluder | bool
|
|
- r_openshift_excluder_enable_docker_excluder | bool
|
|
- ansible_pkg_mgr == "dnf"
|
|
- ansible_pkg_mgr == "dnf"
|
|
|
|
+ register: result
|
|
|
|
+ until: result | success
|
|
|
|
|
|
- name: Install openshift excluder - yum
|
|
- name: Install openshift excluder - yum
|
|
package:
|
|
package:
|
|
@@ -34,6 +38,8 @@
|
|
when:
|
|
when:
|
|
- r_openshift_excluder_enable_openshift_excluder | bool
|
|
- r_openshift_excluder_enable_openshift_excluder | bool
|
|
- ansible_pkg_mgr == "yum"
|
|
- ansible_pkg_mgr == "yum"
|
|
|
|
+ register: result
|
|
|
|
+ until: result | success
|
|
|
|
|
|
# For DNF we do not need the "*" and if we add it, it causes an error because
|
|
# For DNF we do not need the "*" and if we add it, it causes an error because
|
|
# it's not a valid pkg_spec
|
|
# it's not a valid pkg_spec
|
|
@@ -46,6 +52,8 @@
|
|
when:
|
|
when:
|
|
- r_openshift_excluder_enable_openshift_excluder | bool
|
|
- r_openshift_excluder_enable_openshift_excluder | bool
|
|
- ansible_pkg_mgr == "dnf"
|
|
- ansible_pkg_mgr == "dnf"
|
|
|
|
+ register: result
|
|
|
|
+ until: result | success
|
|
|
|
|
|
- set_fact:
|
|
- set_fact:
|
|
r_openshift_excluder_install_ran: True
|
|
r_openshift_excluder_install_ran: True
|