config: small typo fix (#74845)

This commit is contained in:
Boris Korzun 2021-05-27 23:41:20 +03:00 committed by GitHub
parent 148d4f6248
commit 99a983c92c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 3 deletions

View File

@ -0,0 +1,2 @@
bugfixes:
- config - use ``callbacks_enabled`` instead ``callback_enabled`` in a deprecated message (https://github.com/ansible/ansible/issues/70028).

View File

@ -34,7 +34,7 @@ Most callbacks shipped with Ansible are disabled by default and need to be enabl
.. code-block:: ini
#callback_enabled = timer, mail, profile_roles, collection_namespace.collection_name.custom_callback
#callbacks_enabled = timer, mail, profile_roles, collection_namespace.collection_name.custom_callback
Setting a callback plugin for ``ansible-playbook``
--------------------------------------------------

View File

@ -84,7 +84,7 @@
# by default.
#
# Enable callback plugins, they can output to stdout but cannot be 'stdout' type.
#callback_enabled = timer, mail
#callbacks_enabled = timer, mail
# Determine whether includes in tasks and handlers are "static" by
# default. As of 2.0, includes are dynamic by default. Setting these

View File

@ -574,7 +574,7 @@ CALLBACKS_ENABLED:
deprecated:
why: normalizing names to new standard
version: "2.15"
alternatives: 'callback_enabled'
alternatives: 'callbacks_enabled'
- key: callbacks_enabled
section: defaults
version_added: '2.11'