Edite a função verify_dep()
para que a linha
type $i > /dev/null 2>&1 /dev/null
é alterado para
type $i > /dev/null 2>&1
Depois disso, deve funcionar. A linha original estava errada e sempre resultou em um erro.
Estou monitorando o servidor NTP com nagios e nrpe, no servidor nagios, quando recebo o seguinte erro: Status do serviço DESCONHECIDO Informações de status Estou perdendo um componente importante: bash
O plugin é: link
A saída quando eu faço bash -x check_procr.sh
é:
+ myself=check_procr
+ verify_dep
+ needed='bash cut egrep expr grep let ps sed sort tail test tr wc'
++ echo bash cut egrep expr grep let ps sed sort tail test tr wc
+ for i in ''echo $needed''
+ type bash /dev/null
+ '[' 1 -eq 1 ']'
+ echo 'I am missing an important component : bash'
I am missing an important component : bash
+ echo 'Cannot continue, sorry, try to find the missing one...'
Cannot continue, sorry, try to find the missing one...
+ exit 3
Obrigado antecipadamente
Tags bash nrpe nagios shell-scripting