fixed typos in the documentation (#82077)

pull/82159/head
Dellucifer 7 months ago committed by GitHub
parent fd009a073a
commit f2b5c33349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
bugfixes:
- ansible-test - Properly detect docker host when using ``ssh://`` protocol for connecting to the docker daemon.
- ansible-test - Explicitly supply ``ControlPath=none`` when setting up port fowarding over SSH to address
- ansible-test - Explicitly supply ``ControlPath=none`` when setting up port forwarding over SSH to address
the scenario where the local ssh configuration uses ``ControlPath`` for all hosts, and would prevent
ports to be forwarded after the initial connection to the host.

@ -1,5 +1,5 @@
bugfixes:
- Fix for when ``any_errors_fatal`` was ignored if error occured in a block with always (https://github.com/ansible/ansible/issues/31543)
- Fix for when ``any_errors_fatal`` was ignored if error occurred in a block with always (https://github.com/ansible/ansible/issues/31543)
- Fix ``force_handlers`` not working with ``any_errors_fatal`` (https://github.com/ansible/ansible/issues/36308)
- Fix tasks in always section not being executed for nested blocks with ``any_errors_fatal`` (https://github.com/ansible/ansible/issues/73246)
- "``any_errors_fatal`` should fail all hosts and rescue all of them when a ``rescue`` section is specified (https://github.com/ansible/ansible/issues/80981)"

@ -1,3 +1,3 @@
minor_changes:
- "``import_role`` action now also gets a ``public`` option that controls variable exports, default depending on ``DEFAULT_PRIVATE_ROLE_VARS`` (if using defaults equates to ``public=True``)."
- "``DEFAULT_PRIVATE_ROLE_VARS`` is now overriden by explicit setting of ``public`` for ``include_roles`` and ``import_roles``."
- "``DEFAULT_PRIVATE_ROLE_VARS`` is now overridden by explicit setting of ``public`` for ``include_roles`` and ``import_roles``."

@ -5,7 +5,7 @@ from __future__ import annotations
DOCUMENTATION = """
module: fakemodule
broken:
short_desciption: fake module
short_description: fake module
description:
- this is a fake module
version_added: 1.0.0

Loading…
Cancel
Save