summaryrefslogtreecommitdiffstats
path: root/lib/Smokeping/probes/EchoPingHttps.pm
diff options
context:
space:
mode:
authorNiko Tyni <ntyni@iki.fi>2007-10-27 15:00:42 +0200
committerNiko Tyni <ntyni@iki.fi>2007-10-27 15:00:42 +0200
commitb2974cc84cbbefb8d117765acb7230530963aa5c (patch)
tree684981e37a36174d707e48bcf268317a7157f513 /lib/Smokeping/probes/EchoPingHttps.pm
parent51243891b9e493882c59e582c5188f48e1127bed (diff)
downloadsmokeping-b2974cc84cbbefb8d117765acb7230530963aa5c.tar.gz
smokeping-b2974cc84cbbefb8d117765acb7230530963aa5c.tar.xz
* removed all the 'live' tests from the echoping probes --niko
* log a warning message on the first 'round' of pinging if curl or echoping exits with non-zero status --niko
Diffstat (limited to 'lib/Smokeping/probes/EchoPingHttps.pm')
-rw-r--r--lib/Smokeping/probes/EchoPingHttps.pm11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/Smokeping/probes/EchoPingHttps.pm b/lib/Smokeping/probes/EchoPingHttps.pm
index 941df32..c9bcb0c 100644
--- a/lib/Smokeping/probes/EchoPingHttps.pm
+++ b/lib/Smokeping/probes/EchoPingHttps.pm
@@ -50,17 +50,6 @@ sub proto_args {
return ("-C", @args);
}
-sub test_usage {
- my $self = shift;
-
- my $bin = $self->{properties}{binary};
- my $response = `$bin -C -h / 0.0.0.1 2>&1`;
- croak("Your echoping binary doesn't support SSL")
- if ($response =~ /(not compiled|invalid option|usage)/i);
- $self->SUPER::test_usage;
- return;
-}
-
sub ProbeDesc($) {
return "HTTPS pings using echoping(1)";
}