summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/library/check_yum_update.py
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_health_checker/library/check_yum_update.py')
-rwxr-xr-xroles/openshift_health_checker/library/check_yum_update.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/roles/openshift_health_checker/library/check_yum_update.py b/roles/openshift_health_checker/library/check_yum_update.py
index 9bc14fd47..630ebc848 100755
--- a/roles/openshift_health_checker/library/check_yum_update.py
+++ b/roles/openshift_health_checker/library/check_yum_update.py
@@ -27,6 +27,7 @@ def main(): # pylint: disable=missing-docstring,too-many-branches
module.fail_json(msg=error)
yb = yum.YumBase() # pylint: disable=invalid-name
+ yb.conf.disable_excludes = ["all"] # assume the openshift excluder will be managed, ignore current state
# determine if the existing yum configuration is valid
try:
yb.repos.populateSack(mdtype='metadata', cacheonly=1)