Training from 20250617
This commit is contained in:
15
training/reiniciar-nginx.yml
Normal file
15
training/reiniciar-nginx.yml
Normal file
@@ -0,0 +1,15 @@
|
||||
- name: Reiniciar Nginx
|
||||
hosts: all
|
||||
become: yes
|
||||
tasks:
|
||||
- name: Reiniciar el servicio Nginx
|
||||
service:
|
||||
name: nginx
|
||||
state: restarted
|
||||
|
||||
- name: Verificar el estado del servicio Nginx
|
||||
service_facts:
|
||||
|
||||
- name: Mostrar estado del servicio Nginx
|
||||
debug:
|
||||
msg: "El servicio Nginx está {{ ansible_facts.services['nginx.service'].state }}"
|
||||
Reference in New Issue
Block a user