refactor: Remove the specific services files with the same content as the main services.inc.php (#5934)

This commit is contained in:
FTBZ
2017-02-23 00:53:47 +01:00
committed by Neil Lathwood
parent ad58af6e6c
commit 0997172b37
11 changed files with 0 additions and 32 deletions

View File

@@ -1,3 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_ftp -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,3 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_http -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,3 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_imap -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,3 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_ircd -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,2 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_ntp -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,2 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_pop -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,2 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_simap -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,2 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_smtp -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,2 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_spop -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,2 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_ssh -H ".$service['hostname']." ".$service['service_param'];

View File

@@ -1,8 +0,0 @@
<?php
$check_cmd = $config['nagios_plugins'] . "/check_ssl_cert -H ";
if (!empty($service['service_ip'])) {
$check_cmd .= $service['service_ip'];
} else {
$check_cmd .= $service['hostname'];
}
$check_cmd .= " ".$service['service_param'];