mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
366 B
YAML
17 lines
366 B
YAML
2 years ago
|
- name: This worked unintentionally, make sure it does not anymore
|
||
|
hosts: localhost
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- command: echo
|
||
|
notify:
|
||
|
- include_handler
|
||
|
|
||
|
- meta: flush_handlers
|
||
|
|
||
|
- command: echo
|
||
|
notify:
|
||
|
- handler_from_include
|
||
|
handlers:
|
||
|
- name: include_handler
|
||
|
include_tasks: test_notify_included-handlers.yml
|