package_update.py 451 B

1234567891011121314
  1. # pylint: disable=missing-docstring
  2. from openshift_checks import OpenShiftCheck
  3. from openshift_checks.mixins import NotContainerized
  4. class PackageUpdate(NotContainerized, OpenShiftCheck):
  5. """Check that there are no conflicts in RPM packages."""
  6. name = "package_update"
  7. tags = ["preflight"]
  8. def run(self, tmp, task_vars):
  9. args = {"packages": []}
  10. return self.module_executor("check_yum_update", args, tmp, task_vars)