1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[doc] fix example: always trigger the handler (#56384)

by default, debug task result isn't changed - add 'changed_when: yes' to trigger handler
This commit is contained in:
Pilou 2019-05-14 14:02:41 +00:00 committed by Alicia Cozine
parent 674a57c3fa
commit b3ab83bc70

View file

@ -131,6 +131,7 @@ Another example is how to run handlers after an error occurred :
block:
- debug:
msg: 'I execute normally'
changed_when: yes
notify: run me even after an error
- command: /bin/false
rescue: