#!/bin/sh # Pour la configuration NRPE GREEN='\033[0;32m' YELLOW='\033[1;33m' NOCOLOR='\033[0m' echo "${YELLOW} ** ${NOCOLOR} Début du script : 08-nrpe" echo "${NOCOLOR}" echo "${YELLOW} * ${NOCOLOR} Installation composant" echo "${NOCOLOR}" apt install -y nagios-nrpe-server nagios-nrpe-plugin >> /dev/null echo "${YELLOW} * ${NOCOLOR} Installation composant : ${GREEN} OK" echo "${NOCOLOR}" echo "${YELLOW} ** ${NOCOLOR} Fin du script : 08-nrpe" echo "${NOCOLOR}"