8 lines
277 B
YAML
8 lines
277 B
YAML
#SPDX-License-Identifier: MIT-0
|
|
---
|
|
# handlers file for apache2
|
|
#Notifica a la tarea de reinicio de Apache2 si este archivo cambia
|
|
- name: Reiniciar Apache2
|
|
ansible.builtin.service:
|
|
name: apache2 #Nombre del servicio a reiniciar
|
|
state: restarted #Reinicia el servicio |