diff --git a/docs/docsite/rst/user_guide/playbooks_conditionals.rst b/docs/docsite/rst/user_guide/playbooks_conditionals.rst index 2a9d359e314..901bf56163b 100644 --- a/docs/docsite/rst/user_guide/playbooks_conditionals.rst +++ b/docs/docsite/rst/user_guide/playbooks_conditionals.rst @@ -10,7 +10,7 @@ Ansible uses Jinja2 :ref:`tests ` and :ref:`filters `_. + There are many options to control execution flow in Ansible. You can find more examples of supported conditionals at ``_. .. contents:: :local: @@ -67,7 +67,7 @@ If you have multiple conditions, you can group them with parentheses: when: (ansible_facts['distribution'] == "CentOS" and ansible_facts['distribution_major_version'] == "6") or (ansible_facts['distribution'] == "Debian" and ansible_facts['distribution_major_version'] == "7") -You can use `logical operators `_ to combine conditions. When you have multiple conditions that all need to be true (that is, a logical ``and``), you can specify them as a list:: +You can use `logical operators `_ to combine conditions. When you have multiple conditions that all need to be true (that is, a logical ``and``), you can specify them as a list:: tasks: - name: Shut down CentOS 6 systems