From d2f0996445b0bd76bfb97214e92e1ed1c7185993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20S=C3=89RIE?= Date: Tue, 18 Jul 2017 10:45:07 +0200 Subject: [PATCH] Remove custom values. Someone has copied this script from a production server with custom values. --- nagios-nrpe/files/plugins/check_http_many | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nagios-nrpe/files/plugins/check_http_many b/nagios-nrpe/files/plugins/check_http_many index 90d8d9e2..cd753cbe 100644 --- a/nagios-nrpe/files/plugins/check_http_many +++ b/nagios-nrpe/files/plugins/check_http_many @@ -43,7 +43,7 @@ done sites="" for site in $sites; do echo -n "Site ${site}: " >> $result - /usr/lib/nagios/plugins/check_http -w4 -c6 -f critical -p 443 -S -I 127.0.0.1 -H ${site%%/*} -u /${site#*/} >> $result + /usr/lib/nagios/plugins/check_http -f critical -p 443 -S -I 127.0.0.1 -H ${site%%/*} -u /${site#*/} >> $result check_state $? done