summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/46447.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/handlers/46447.yml')
-rw-r--r--test/integration/targets/handlers/46447.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/integration/targets/handlers/46447.yml b/test/integration/targets/handlers/46447.yml
new file mode 100644
index 0000000..d2812b5
--- /dev/null
+++ b/test/integration/targets/handlers/46447.yml
@@ -0,0 +1,16 @@
+- hosts: A,B
+ gather_facts: no
+ any_errors_fatal: True
+ tasks:
+ - command: /bin/true
+ notify: test_handler
+
+ - meta: flush_handlers
+
+ - name: Should not get here
+ debug:
+ msg: "SHOULD NOT GET HERE"
+
+ handlers:
+ - name: test_handler
+ command: /usr/bin/{{ (inventory_hostname == 'A') | ternary('true', 'false') }}