summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPilou <pierre-louis@libregerbil.fr>2019-02-26 16:46:35 +0100
committerAlicia Cozine <879121+acozine@users.noreply.github.com>2019-02-26 09:46:35 -0600
commitd8a2d64ec1b17e177f763c56287604d8661924f6 (patch)
treef89195c58437eda7634cb27478b95b9b74710d11 /docs
parenta361140680a980eeb63eed170cc57fff34c8d8b1 (diff)
downloadansible-d8a2d64ec1b17e177f763c56287604d8661924f6.tar.gz
osx_say callback plugin: add espeak support, rename to say (#33740)
* rename into say * add support for espeak command * adds symlink from osx_say to say * Update version number
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/plugins/callback.rst2
-rw-r--r--docs/docsite/rst/porting_guides/porting_guide_2.8.rst2
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/docsite/rst/plugins/callback.rst b/docs/docsite/rst/plugins/callback.rst
index b3a5dbd373..0614a0c9b6 100644
--- a/docs/docsite/rst/plugins/callback.rst
+++ b/docs/docsite/rst/plugins/callback.rst
@@ -19,7 +19,7 @@ Example callback plugins
The :ref:`log_plays <log_plays_callback>` callback is an example of how to record playbook events to a log file,
and the :ref:`mail <mail_callback>` callback sends email on playbook failures.
-The :ref:`osx_say <osx_say_callback>` callback responds with computer synthesized speech on macOS in relation to playbook events.
+The :ref:`say <say_callback>` callback responds with computer synthesized speech in relation to playbook events.
.. _enabling_callbacks:
diff --git a/docs/docsite/rst/porting_guides/porting_guide_2.8.rst b/docs/docsite/rst/porting_guides/porting_guide_2.8.rst
index 5126f4dcaa..b7508a9767 100644
--- a/docs/docsite/rst/porting_guides/porting_guide_2.8.rst
+++ b/docs/docsite/rst/porting_guides/porting_guide_2.8.rst
@@ -242,6 +242,8 @@ Plugins
* Play recap now counts ``ignored`` and ``rescued`` tasks as well as ``ok``, ``changed``, ``unreachable``, ``failed`` and ``skipped`` tasks, thanks to two additional stat counters in the ``default`` callback plugin. Tasks that fail and have ``ignore_errors: yes`` set are listed as ``ignored``. Tasks that fail and then execute a rescue section are listed as ``rescued``. Note that ``rescued`` tasks are no longer counted as ``failed`` as in Ansible 2.7 (and earlier).
+* ``osx_say`` callback plugin was renamed into :ref:`say <say_callback>`.
+
Porting custom scripts
======================