aa_version_requirement.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 ansible import __version__
  10. if __version__ < '2.0':
  11. # pylint: disable=import-error,no-name-in-module
  12. # Disabled because pylint warns when Ansible v2 is installed
  13. from ansible.callbacks import display as pre2_display
  14. CallbackBase = object
  15. def display(*args, **kwargs):
  16. """Set up display function for pre Ansible v2"""
  17. pre2_display(*args, **kwargs)
  18. else:
  19. from ansible.plugins.callback import CallbackBase
  20. from ansible.utils.display import Display
  21. def display(*args, **kwargs):
  22. """Set up display function for Ansible v2"""
  23. display_instance = Display()
  24. display_instance.display(*args, **kwargs)
  25. # Set to minimum required Ansible version
  26. REQUIRED_VERSION = '2.4.1.0'
  27. DESCRIPTION = "Supported versions: %s or newer" % REQUIRED_VERSION
  28. def version_requirement(version):
  29. """Test for minimum required version"""
  30. return version >= REQUIRED_VERSION
  31. class CallbackModule(CallbackBase):
  32. """
  33. Ansible callback plugin
  34. """
  35. CALLBACK_VERSION = 1.0
  36. CALLBACK_NAME = 'version_requirement'
  37. def __init__(self):
  38. """
  39. Version verification is performed in __init__ to catch the
  40. requirement early in the execution of Ansible and fail gracefully
  41. """
  42. super(CallbackModule, self).__init__()
  43. if not version_requirement(__version__):
  44. display(
  45. 'FATAL: Current Ansible version (%s) is not supported. %s'
  46. % (__version__, DESCRIPTION), color='red')
  47. sys.exit(1)