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
424 B
YAML
17 lines
424 B
YAML
6 years ago
|
---
|
||
|
- name: Verify handler can include other tasks (#47287)
|
||
|
hosts: testhost
|
||
|
tasks:
|
||
|
- name: include a task from the tasks section
|
||
|
include_tasks: handlers.yml
|
||
|
|
||
|
- name: notify a handler
|
||
|
debug:
|
||
|
msg: notifying handler
|
||
|
changed_when: yes
|
||
|
notify: include a task from the handlers section
|
||
|
|
||
|
handlers:
|
||
|
- name: include a task from the handlers section
|
||
|
include_tasks: handlers.yml
|