aa_version_requirement.py 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #!/usr/bin/python
  2. """
  3. This callback plugin verifies the required minimum version of Ansible
  4. is installed for proper operation of the OpenShift Ansible Installer.
  5. The plugin is named with leading `aa_` to ensure this plugin is loaded
  6. first (alphanumerically) by Ansible.
  7. """
  8. import sys
  9. from distutils import version
  10. from ansible import __version__
  11. if __version__ < '2.0':
  12. # pylint: disable=import-error,no-name-in-module
  13. # Disabled because pylint warns when Ansible v2 is installed
  14. from ansible.callbacks import display as pre2_display
  15. CallbackBase = object
  16. def display(*args, **kwargs):
  17. """Set up display function for pre Ansible v2"""
  18. pre2_display(*args, **kwargs)
  19. else:
  20. from ansible.plugins.callback import CallbackBase
  21. from ansible.utils.display import Display
  22. def display(*args, **kwargs):
  23. """Set up display function for Ansible v2"""
  24. display_instance = Display()
  25. display_instance.display(*args, **kwargs)
  26. # Set to minimum required Ansible version
  27. REQUIRED_VERSION = version.StrictVersion('2.5.7')
  28. DESCRIPTION = "Supported versions: %s or newer" % REQUIRED_VERSION
  29. def version_requirement(ver):
  30. """Test for minimum required version"""
  31. if not isinstance(ver, version.StrictVersion):
  32. ver = version.StrictVersion(ver)
  33. return ver >= REQUIRED_VERSION
  34. class CallbackModule(CallbackBase):
  35. """
  36. Ansible callback plugin
  37. """
  38. CALLBACK_VERSION = 1.0
  39. CALLBACK_NAME = 'version_requirement'
  40. def __init__(self):
  41. """
  42. Version verification is performed in __init__ to catch the
  43. requirement early in the execution of Ansible and fail gracefully
  44. """
  45. super(CallbackModule, self).__init__()
  46. if not version_requirement(__version__):
  47. display(
  48. 'FATAL: Current Ansible version (%s) is not supported. %s'
  49. % (__version__, DESCRIPTION), color='red')
  50. sys.exit(1)