package_update.py 474 B

1234567891011121314
  1. # pylint: disable=missing-docstring
  2. from openshift_checks import OpenShiftCheck
  3. from openshift_checks.mixins import NotContainerizedMixin
  4. class PackageUpdate(NotContainerizedMixin, 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.execute_module("check_yum_update", args, tmp=tmp, task_vars=task_vars)