12 lines
249 B
YAML
12 lines
249 B
YAML
|
---
|
||
|
- name: notify inexistent handler
|
||
|
hosts: localhost
|
||
|
gather_facts: false
|
||
|
connection: local
|
||
|
tasks:
|
||
|
- name: test notify an inexistent handler
|
||
|
command: uptime
|
||
|
notify:
|
||
|
- notify_inexistent_handler
|
||
|
register: result
|