From 37e9d2278aac698124eb8000cd332c09ba1393d9 Mon Sep 17 00:00:00 2001 From: Emilien Macchi Date: Wed, 29 Jul 2020 02:16:16 -0400 Subject: [PATCH] Fix a typo in "restart mysql" example (#70950) Fix a typo in "restart mysql" example task. It's missing a space between "state:" and "restarted". --- docs/docsite/rst/user_guide/playbooks_reuse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/user_guide/playbooks_reuse.rst b/docs/docsite/rst/user_guide/playbooks_reuse.rst index 5331b4866c4..ef9863212d7 100644 --- a/docs/docsite/rst/user_guide/playbooks_reuse.rst +++ b/docs/docsite/rst/user_guide/playbooks_reuse.rst @@ -137,7 +137,7 @@ You can also use includes and imports in the :ref:`handlers` section of a playbo - name: restart mysql service: name: mysql - state:restarted + state: restarted You can trigger handlers from either an import or an include, but the procedure is different for each method of re-use. If you include the file, you must notify the include itself, which triggers all the tasks in ``restarts.yml``. If you import the file, you must notify the individual task(s) within ``restarts.yml``. You can mix direct tasks and handlers with included or imported tasks and handlers.