Actualizar linux-config-nagios-nrpe.yaml

This commit is contained in:
David Lopez 2024-09-06 20:09:44 +00:00
parent 3080f9f7b5
commit 022304c9f8
1 changed files with 13 additions and 2 deletions

View File

@ -6,12 +6,23 @@
gather_facts: no
tasks:
- name: "[CONFIG NAGIOS NRPE] Comprobando si es necesario configurar nagios nrpe service "
- name: "[DEBUG] Comprobando si es necesario configurar nagios nrpe service"
debug:
var: nagios_nrpe_enabled
- name: "[CONFIG NAGIOS NRPE] Definir valor predeterminado para nagios_nrpe_enabled si no está definido"
set_fact:
nagios_nrpe_enabled: false
when: nagios_nrpe_enabled is not defined
- name: "[CONFIG NAGIOS NRPE] Comprobando si es necesario configurar nagios nrpe service"
debug:
msg: "No es necesario configurar nagios nrpe service en la máquina"
when: nagios_nrpe_enabled is not defined or not nagios_nrpe_enabled
when: nagios_nrpe_enabled | bool == false
- name: "[CONFIG NAGIOS NRPE] Install and configure nagios nrpe service"
import_role:
name: config-nagios-nrpe
when: nagios_nrpe_enabled | bool
when: nagios_nrpe_enabled is defined and nagios_nrpe_enabled