Handler
Example
One Handler
tasks:
- name: copy demo.conf configuration template
template:
src: /var/lib/templates/demo.conf.template
dest: /etc/httpd/conf.d/demo.conf
notify:
- restart apache
handlers:
- name: restart apache
service:
name: httpd
state: restartedMultiple Handlers
Last updated