我有以下角色,在我定义的处理程序中,在task / main.yml下进行通知,在handlers / main.yml中进行处理 当我执行-vvvv时,它显示触发的处理程序,但处理程序任务输出未执行。 有人可以评论是否缺少任何东西。
---
# tasks file for /etc/ansible/roles/ios
- name: Test
changed_when: true
ios_command:
commands: "{{ Model }}"
notify:
- trigger command
---
# handlers file for /etc/ansible/roles/ios
- name: "trigger command"
debug:
msg: Success
# Tree structure:
├── handlers
│ └── main.yml
├── tasks
│ └── main.yml