package_update.py 549 B

1234567891011121314
  1. """Check that a yum update would not run into conflicts with available packages."""
  2. from openshift_checks import OpenShiftCheck
  3. from openshift_checks.mixins import NotContainerizedMixin
  4. class PackageUpdate(NotContainerizedMixin, OpenShiftCheck):
  5. """Check that a yum update would not run into conflicts with available 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)