summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins-scripts/.cvsignore1
-rw-r--r--plugins-scripts/Makefile.am6
-rwxr-xr-xplugins-scripts/check_file_age.pl (renamed from contrib/check_file_age.pl)2
-rw-r--r--plugins-scripts/subst.in2
4 files changed, 7 insertions, 4 deletions
diff --git a/plugins-scripts/.cvsignore b/plugins-scripts/.cvsignore
index 341101f..3066a97 100644
--- a/plugins-scripts/.cvsignore
+++ b/plugins-scripts/.cvsignore
@@ -16,3 +16,4 @@ check_oracle
16check_rpc 16check_rpc
17check_sensors 17check_sensors
18check_wave 18check_wave
19check_file_age
diff --git a/plugins-scripts/Makefile.am b/plugins-scripts/Makefile.am
index 411c1a0..5556cf6 100644
--- a/plugins-scripts/Makefile.am
+++ b/plugins-scripts/Makefile.am
@@ -6,11 +6,13 @@ VPATH=$(top_srcdir) $(top_srcdir)/plugins-scripts $(top_srcdir)/plugins-scripts/
6 6
7libexec_SCRIPTS = check_breeze check_disk_smb check_flexlm check_ircd \ 7libexec_SCRIPTS = check_breeze check_disk_smb check_flexlm check_ircd \
8 check_log check_ntp check_oracle check_rpc check_sensors check_wave \ 8 check_log check_ntp check_oracle check_rpc check_sensors check_wave \
9 check_ifstatus check_ifoperstatus check_mailq utils.sh utils.pm 9 check_ifstatus check_ifoperstatus check_mailq check_file_age \
10 utils.sh utils.pm
10 11
11EXTRA_DIST=check_breeze.pl check_disk_smb.pl check_flexlm.pl check_ircd.pl \ 12EXTRA_DIST=check_breeze.pl check_disk_smb.pl check_flexlm.pl check_ircd.pl \
12 check_log.sh check_ntp.pl check_oracle.sh check_rpc.pl check_sensors.sh \ 13 check_log.sh check_ntp.pl check_oracle.sh check_rpc.pl check_sensors.sh \
13 check_ifstatus.pl check_ifoperstatus.pl check_wave.pl check_mailq.pl utils.sh.in utils.pm.in t 14 check_ifstatus.pl check_ifoperstatus.pl check_wave.pl check_mailq.pl check_file_age.pl \
15 utils.sh.in utils.pm.in t
14 16
15TESTS_ENVIRONMENT=perl -I $(top_builddir) -I $(top_srcdir) 17TESTS_ENVIRONMENT=perl -I $(top_builddir) -I $(top_srcdir)
16 18
diff --git a/contrib/check_file_age.pl b/plugins-scripts/check_file_age.pl
index ae9311e..2ab1a28 100755
--- a/contrib/check_file_age.pl
+++ b/plugins-scripts/check_file_age.pl
@@ -27,7 +27,7 @@ use English;
27use Getopt::Long; 27use Getopt::Long;
28use File::stat; 28use File::stat;
29use vars qw($PROGNAME); 29use vars qw($PROGNAME);
30use lib utils.pm; 30use lib ".";
31use utils qw (%ERRORS &print_revision &support); 31use utils qw (%ERRORS &print_revision &support);
32 32
33sub print_help (); 33sub print_help ();
diff --git a/plugins-scripts/subst.in b/plugins-scripts/subst.in
index 7e38e02..2ac4534 100644
--- a/plugins-scripts/subst.in
+++ b/plugins-scripts/subst.in
@@ -45,7 +45,7 @@ BEGIN {
45/^#! ?\/.*\/sh/ {sub(/^#! ?\/.*\/sh/,"#! @SHELL@");} 45/^#! ?\/.*\/sh/ {sub(/^#! ?\/.*\/sh/,"#! @SHELL@");}
46 46
47# add to libexecdir to INC for perl utils.pm 47# add to libexecdir to INC for perl utils.pm
48/^use/ { if (/lib/) { if (/utils.pm/ ) {sub(/utils.pm/,led() )} } } 48/^use/ { if (/lib/) { if (/utils.pm|"."/ ) {sub(/utils.pm|"."/,led() )} } }
49 49
50 50
51# Trusted path mechanism (deprecated) 51# Trusted path mechanism (deprecated)