mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
11 lines
249 B
YAML
11 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
|