mirror of
https://github.com/ansible/ansible.git
synced 2026-08-02 00:22:14 +02:00
* Add test for a handler including tasks from a variable filename * Add FieldAttributeBase attribute to indicate if the object should be post validated Co-authored-by: Matt Davis <6775756+nitzmahone@users.noreply.github.com>
24 lines
640 B
YAML
24 lines
640 B
YAML
---
|
|
- 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
|
|
- include a task in a loop from the handlers section
|
|
|
|
handlers:
|
|
- name: include a task from the handlers section
|
|
include_tasks: handlers.yml
|
|
|
|
- name: include a task in a loop from the handlers section
|
|
include_tasks: "{{ item }}"
|
|
with_first_found:
|
|
- handlers.yml
|