Update playbooks_conditionals.rst (#54438)

added missed verb for better readability
This commit is contained in:
Ilya Reshetnikov 2019-03-27 15:26:09 +11:00 committed by Abhijeet Kasurde
parent 870abd7366
commit 5ccad0a3c5

View file

@ -29,7 +29,7 @@ It's actually pretty simple::
- name: "shut down Debian flavored systems"
command: /sbin/shutdown -t now
when: ansible_facts['os_family'] == "Debian"
# note that all variables can be directly in conditionals without double curly braces
# note that all variables can be used directly in conditionals without double curly braces
You can also use parentheses to group conditions::