From 623f803e0b797515b1a4e68b7a8bda1309dbd3d1 Mon Sep 17 00:00:00 2001 From: Omar Osman Date: Fri, 21 Sep 2018 15:42:31 +0200 Subject: [PATCH] update example to YAML style in documentation (#45968) The example is in a key=value format which is deprecated. +label: docsite_pr --- docs/docsite/rst/user_guide/playbooks_reuse_includes.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_reuse_includes.rst b/docs/docsite/rst/user_guide/playbooks_reuse_includes.rst index e0d8910a283..1ab3ab6a84f 100644 --- a/docs/docsite/rst/user_guide/playbooks_reuse_includes.rst +++ b/docs/docsite/rst/user_guide/playbooks_reuse_includes.rst @@ -75,7 +75,9 @@ Includes and imports can also be used in the ``handlers:`` section. For instance # more_handlers.yml - name: restart apache - service: name=apache state=restarted + service: + name: apache + state: restarted And in your main playbook file::