X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=contrib%2Fcheck_oracle_instance.pl;fp=contrib%2Fcheck_oracle_instance.pl;h=3ba8d57a73b0ef7e2bfdf21e2b2d666dd0c63e0b;hb=6fbd14fea5c111a23d9074d25499991cbfa58f79;hp=1175c1ed1aff10e321d56bb3346cdffd4f26d951;hpb=56cf151ae91c5081a99365848a3f060dfe14a68c;p=nagiosplug.git diff --git a/contrib/check_oracle_instance.pl b/contrib/check_oracle_instance.pl index 1175c1e..3ba8d57 100644 --- a/contrib/check_oracle_instance.pl +++ b/contrib/check_oracle_instance.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id$ +# $Id: check_oracle_instance.pl 10 2002-04-03 02:58:47Z sghosh $ # Copyright (c) 2002 Sven Dolderer # some pieces of Code adopted from Adam vonNieda's oracletool.pl @@ -23,7 +23,7 @@ require DBD::Oracle || die "It appears that the DBD::Oracle module is not instal use vars qw($VERSION $PROGNAME $logfile $debug $state $dbh $database $username $password $message $sql $cursor $opt_asession $opt_nsession $opt_tablespace $opt_nextents $opt_fextents $opt_aextents $privsok $warn $critical); -'$Revision$' =~ /^.*(\d+.\d+) \$$/; # Use The Revision from RCS/CVS +'$Revision: 10 $' =~ /^.*(\d+.\d+) \$$/; # Use The Revision from RCS/CVS $VERSION = $1; $0 =~ m!^.*/([^/]+)$!; $PROGNAME = $1;