summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5b37f0d)
raw | patch | inline | side by side (parent: 5b37f0d)
author | Ton Voon <tonvoon@users.sourceforge.net> | |
Wed, 17 Sep 2003 19:07:19 +0000 (19:07 +0000) | ||
committer | Ton Voon <tonvoon@users.sourceforge.net> | |
Wed, 17 Sep 2003 19:07:19 +0000 (19:07 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@739 f882894a-f735-0410-b71e-b25c423dba1c
contrib/maser-oracle.pl | [deleted file] | patch | blob | history |
diff --git a/contrib/maser-oracle.pl b/contrib/maser-oracle.pl
--- 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;}
-