blob: af6a726c1c9ef736dda09d808cc60ef48ac2d343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
---
- name: Example of no-handler rule
hosts: localhost
tasks:
- name: Register result of a task
ansible.builtin.copy:
dest: "/tmp/placeholder"
content: "Ansible made this!"
mode: "0600"
notify:
- Second command to run # <-- handler will run only when file is changed
handlers:
- name: Second command to run
ansible.builtin.debug:
msg: The placeholder file was modified!
|