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".
This commit is contained in:
Emilien Macchi 2020-07-29 02:16:16 -04:00 committed by GitHub
parent 69e5c6c14a
commit 37e9d2278a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.