Files
startusingansible/training/handlers.yml
Guillem Hernandez Sola 5620e1f4dc Training from 20250617
2025-06-17 13:51:26 +02:00

15 lines
319 B
YAML

- name: Prueba de handlers
hosts: all
become: yes
tasks:
- name: Copiar archivo de configuración
copy:
src: nginx.conf
dest: /etc/nginx/nginx.conf
notify:
- Reiniciar Nginx
handlers:
- name: Reiniciar Nginx
service:
name: nginx
state: restarted