Code

Removing all .cvsignore files
[nagiosplug.git] / plugins-scripts / check_wave.pl
index c6e6c6620e42538dcbaddc6bc8bda95f33b464f6..fe2170179164ecac68458ce49c273ae9fc8afd83 100755 (executable)
@@ -1,17 +1,10 @@
-#! /usr/bin/perl -wT
+#!/usr/bin/perl -wT
 #
 # $Id$
 
 
-BEGIN {
-       if ($0 =~ m/^(.*?)[\/\\]([^\/\\]+)$/) {
-               $runtimedir = $1;
-               $PROGNAME = $2;
-       }
-}
-
 use strict;
-use lib $main::runtimedir;
+use lib utils.pm;
 use utils qw($TIMEOUT %ERRORS &print_revision &support);
 use vars qw($PROGNAME);
 use Getopt::Long;
@@ -19,6 +12,7 @@ use vars qw($opt_V $opt_h $verbose $opt_w $opt_c $opt_H);
 my (@test, $low1, $med1, $high1, $snr, $low2, $med2, $high2);
 my ($low, $med, $high, $lowavg, $medavg, $highavg, $tot, $ss);
 
+$PROGNAME = "check_wave";
 sub print_help ();
 sub print_usage ();