check_yum_update.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. #!/usr/bin/python
  2. '''
  3. Ansible module to test whether a yum update or install will succeed,
  4. without actually performing it or running yum.
  5. parameters:
  6. packages: (optional) A list of package names to install or update.
  7. If omitted, all installed RPMs are considered for updates.
  8. '''
  9. import sys
  10. import yum # pylint: disable=import-error
  11. from ansible.module_utils.basic import AnsibleModule
  12. def main(): # pylint: disable=missing-docstring,too-many-branches
  13. module = AnsibleModule(
  14. argument_spec=dict(
  15. packages=dict(type='list', default=[])
  16. ),
  17. supports_check_mode=True
  18. )
  19. def bail(error): # pylint: disable=missing-docstring
  20. module.fail_json(msg=error)
  21. yb = yum.YumBase() # pylint: disable=invalid-name
  22. yb.conf.disable_excludes = ["all"] # assume the openshift excluder will be managed, ignore current state
  23. # determine if the existing yum configuration is valid
  24. try:
  25. yb.repos.populateSack(mdtype='metadata', cacheonly=1)
  26. # for error of type:
  27. # 1. can't reach the repo URL(s)
  28. except yum.Errors.NoMoreMirrorsRepoError as e: # pylint: disable=invalid-name
  29. bail('Error getting data from at least one yum repository: %s' % e)
  30. # 2. invalid repo definition
  31. except yum.Errors.RepoError as e: # pylint: disable=invalid-name
  32. bail('Error with yum repository configuration: %s' % e)
  33. # 3. other/unknown
  34. # * just report the problem verbatim
  35. except: # pylint: disable=bare-except; # noqa
  36. bail('Unexpected error with yum repository: %s' % sys.exc_info()[1])
  37. packages = module.params['packages']
  38. no_such_pkg = []
  39. for pkg in packages:
  40. try:
  41. yb.install(name=pkg)
  42. except yum.Errors.InstallError as e: # pylint: disable=invalid-name
  43. no_such_pkg.append(pkg)
  44. except: # pylint: disable=bare-except; # noqa
  45. bail('Unexpected error with yum install/update: %s' %
  46. sys.exc_info()[1])
  47. if not packages:
  48. # no packages requested means test a yum update of everything
  49. yb.update()
  50. elif no_such_pkg:
  51. # wanted specific packages to install but some aren't available
  52. user_msg = 'Cannot install all of the necessary packages. Unavailable:\n'
  53. for pkg in no_such_pkg:
  54. user_msg += ' %s\n' % pkg
  55. user_msg += 'You may need to enable one or more yum repositories to make this content available.'
  56. bail(user_msg)
  57. try:
  58. txn_result, txn_msgs = yb.buildTransaction()
  59. except: # pylint: disable=bare-except; # noqa
  60. bail('Unexpected error during dependency resolution for yum update: \n %s' %
  61. sys.exc_info()[1])
  62. # find out if there are any errors with the update/install
  63. if txn_result == 0: # 'normal exit' meaning there's nothing to install/update
  64. pass
  65. elif txn_result == 1: # error with transaction
  66. user_msg = 'Could not perform a yum update.\n'
  67. if len(txn_msgs) > 0:
  68. user_msg += 'Errors from dependency resolution:\n'
  69. for msg in txn_msgs:
  70. user_msg += ' %s\n' % msg
  71. user_msg += 'You should resolve these issues before proceeding with an install.\n'
  72. user_msg += 'You may need to remove or downgrade packages or enable/disable yum repositories.'
  73. bail(user_msg)
  74. # TODO: it would be nice depending on the problem:
  75. # 1. dependency for update not found
  76. # * construct the dependency tree
  77. # * find the installed package(s) that required the missing dep
  78. # * determine if any of these packages matter to openshift
  79. # * build helpful error output
  80. # 2. conflicts among packages in available content
  81. # * analyze dependency tree and build helpful error output
  82. # 3. other/unknown
  83. # * report the problem verbatim
  84. # * add to this list as we come across problems we can clearly diagnose
  85. elif txn_result == 2: # everything resolved fine
  86. pass
  87. else:
  88. bail('Unknown error(s) from dependency resolution. Exit Code: %d:\n%s' %
  89. (txn_result, txn_msgs))
  90. module.exit_json(changed=False)
  91. if __name__ == '__main__':
  92. main()