From eed606e0e964541f4845752f606e41b093b7486c Mon Sep 17 00:00:00 2001 From: Alicia Cozine <879121+acozine@users.noreply.github.com> Date: Fri, 25 Sep 2020 11:46:45 -0500 Subject: [PATCH] adds name lines to handler re-use examples (#71946) Co-authored-by: Alicia Cozine --- docs/docsite/rst/user_guide/playbooks_reuse.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docsite/rst/user_guide/playbooks_reuse.rst b/docs/docsite/rst/user_guide/playbooks_reuse.rst index 3e80f5c2948..bc6de77d133 100644 --- a/docs/docsite/rst/user_guide/playbooks_reuse.rst +++ b/docs/docsite/rst/user_guide/playbooks_reuse.rst @@ -152,7 +152,7 @@ Includes are executed at run-time, so the name of the include exists during play .. code-block:: yaml - - trigger an included (dynamic) handler + - name: Trigger an included (dynamic) handler hosts: localhost handlers: - name: Restart services @@ -168,11 +168,11 @@ Imports are processed before the play begins, so the name of the import no longe .. code-block:: yaml - - trigger an imported (static) handler + - name: Trigger an imported (static) handler hosts: localhost handlers: - - name: Restart services - import_tasks: restarts.yml + - name: Restart services + import_tasks: restarts.yml tasks: - command: "true" notify: Restart apache