default.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. '''Plugin to override the default output logic.'''
  2. # upstream: https://gist.github.com/cliffano/9868180
  3. # This program is free software: you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation, either version 3 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. # For some reason this has to be done
  16. import imp
  17. import os
  18. ANSIBLE_PATH = imp.find_module('ansible')[1]
  19. DEFAULT_PATH = os.path.join(ANSIBLE_PATH, 'plugins/callback/default.py')
  20. DEFAULT_MODULE = imp.load_source(
  21. 'ansible.plugins.callback.default',
  22. DEFAULT_PATH
  23. )
  24. class CallbackModule(DEFAULT_MODULE.CallbackModule): # pylint: disable=too-few-public-methods,no-init
  25. '''
  26. Override for the default callback module.
  27. Render std err/out outside of the rest of the result which it prints with
  28. indentation.
  29. '''
  30. CALLBACK_VERSION = 2.0
  31. CALLBACK_TYPE = 'stdout'
  32. CALLBACK_NAME = 'default'
  33. def _dump_results(self, result):
  34. '''Return the text to output for a result.'''
  35. result['_ansible_verbose_always'] = True
  36. save = {}
  37. for key in ['stdout', 'stdout_lines', 'stderr', 'stderr_lines', 'msg']:
  38. if key in result:
  39. save[key] = result.pop(key)
  40. output = DEFAULT_MODULE.CallbackModule._dump_results(self, result)
  41. for key in ['stdout', 'stderr', 'msg']:
  42. if key in save and save[key]:
  43. output += '\n\n%s:\n\n%s\n' % (key.upper(), save[key])
  44. for key, value in save.items():
  45. result[key] = value
  46. return output