summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/playbook_guide/playbooks_conditionals.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/docsite/rst/playbook_guide/playbooks_conditionals.rst b/docs/docsite/rst/playbook_guide/playbooks_conditionals.rst
index f920fd74b4..e1bf42d5cb 100644
--- a/docs/docsite/rst/playbook_guide/playbooks_conditionals.rst
+++ b/docs/docsite/rst/playbook_guide/playbooks_conditionals.rst
@@ -175,6 +175,10 @@ Ansible always registers something in a registered variable for every host, even
ansible.builtin.command: /bin/still/something_else
when: result is skipped
+ - name: Run only if the task that registered the "result" variable changed something.
+ ansible.builtin.command: /bin/still/something_else
+ when: result is changed
+
.. note:: Older versions of Ansible used ``success`` and ``fail``, but ``succeeded`` and ``failed`` use the correct tense. All of these options are now valid.