summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/openshift_checks/package_update.py
blob: 316a776f549857504ed76a93fa812a58c5b4d3fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# pylint: disable=missing-docstring
from openshift_checks import OpenShiftCheck
from openshift_checks.mixins import NotContainerized


class PackageUpdate(NotContainerized, OpenShiftCheck):
    """Check that there are no conflicts in RPM packages."""

    name = "package_update"

    def run(self, tmp, task_vars):
        args = {"packages": []}
        return self.module_executor("check_yum_update", args, tmp, task_vars)