aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/maser-oracle.pl13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/maser-oracle.pl b/contrib/maser-oracle.pl
deleted file mode 100644
index aa2741f1..00000000
--- a/contrib/maser-oracle.pl
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/perl
-
-# Oracle plugin submitted by Christopher Maser (maser@onvista.de)
-# 12/31/1999
-
-my $host=$ARGV[0];
-my @test=`tnsping $host`;
-my $arg=$test[6];
-chomp $arg;
-if ($arg =~ /^OK (.*)/)
-{print "$arg"; exit 0}
-else {exit 2;}
-