Rename ARA default callback to ara_default

Naming the callback simply 'default' overrides the actual Ansible
default callback. Name it something else so it doesn't clash.

Change-Id: I3a4269c5a4ec1bee3bd090c57e696032c2508a62
This commit is contained in:
David Moreau Simard 2018-06-20 10:11:28 -04:00
parent 92320181a9
commit ff8f450117
No known key found for this signature in database
GPG Key ID: 33A07694CBB71ECC
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class CallbackModule(CallbackBase):
"""
CALLBACK_VERSION = 2.0
CALLBACK_TYPE = 'awesome'
CALLBACK_NAME = 'ara'
CALLBACK_NAME = 'ara_default'
def __init__(self):
super(CallbackModule, self).__init__()