Fixed Jinja typo in faq.rst

A closing curly brace was missing in the first block of Jinja code under the "Restart using states" section.
This commit is contained in:
Damian Wiest 2017-10-02 10:15:02 -05:00 committed by GitHub
parent df9317ed39
commit 76cd070e2d

View file

@ -325,7 +325,7 @@ The following example works on UNIX-like operating systems:
.. code-block:: jinja
{%- if grains['os'] != 'Windows' %
{%- if grains['os'] != 'Windows' %}
Restart Salt Minion:
cmd.run:
- name: 'salt-call --local service.restart salt-minion'