diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-01-31 14:52:49 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-01-31 14:52:49 (GMT) |
commit | 864544b29ef7ad2cddc32c26b4251fc1b680c8f9 (patch) | |
tree | 199c9fd4d1acd7c4c7cd5e4dd308e16d58c02211 /plugins/Makefile.am | |
parent | 3a3f326bbf1baf28ceebf29cd1800a27d47b3047 (diff) | |
download | monitoring-plugins-864544b29ef7ad2cddc32c26b4251fc1b680c8f9.tar.gz |
Adding check_mysql_query, using new ranges and threshold checking
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1309 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/Makefile.am')
-rw-r--r-- | plugins/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index a67911c..70d0cf9 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
@@ -25,7 +25,7 @@ check_tcp_programs = check_ftp check_imap check_nntp check_pop \ | |||
25 | EXTRA_PROGRAMS = check_mysql check_radius check_pgsql check_snmp check_hpjd \ | 25 | EXTRA_PROGRAMS = check_mysql check_radius check_pgsql check_snmp check_hpjd \ |
26 | check_swap check_fping check_ldap check_game check_dig \ | 26 | check_swap check_fping check_ldap check_game check_dig \ |
27 | check_nagios check_by_ssh check_dns check_nt check_ide_smart \ | 27 | check_nagios check_by_ssh check_dns check_nt check_ide_smart \ |
28 | check_procs | 28 | check_procs check_mysql_query |
29 | 29 | ||
30 | EXTRA_DIST = t utils.c netutils.c sslutils.c popen.c utils.h netutils.h \ | 30 | EXTRA_DIST = t utils.c netutils.c sslutils.c popen.c utils.h netutils.h \ |
31 | popen.h common.h getaddrinfo.c getaddrinfo.h \ | 31 | popen.h common.h getaddrinfo.c getaddrinfo.h \ |
@@ -64,6 +64,7 @@ check_load_LDADD = $(BASEOBJS) popen.o | |||
64 | check_mrtg_LDADD = $(BASEOBJS) | 64 | check_mrtg_LDADD = $(BASEOBJS) |
65 | check_mrtgtraf_LDADD = $(BASEOBJS) | 65 | check_mrtgtraf_LDADD = $(BASEOBJS) |
66 | check_mysql_LDADD = $(NETLIBS) $(MYSQLLIBS) | 66 | check_mysql_LDADD = $(NETLIBS) $(MYSQLLIBS) |
67 | check_mysql_query_LDADD = $(NETLIBS) $(MYSQLLIBS) | ||
67 | check_nagios_LDADD = $(BASEOBJS) runcmd.o | 68 | check_nagios_LDADD = $(BASEOBJS) runcmd.o |
68 | check_nt_LDADD = $(NETLIBS) | 69 | check_nt_LDADD = $(NETLIBS) |
69 | check_nwstat_LDADD = $(NETLIBS) | 70 | check_nwstat_LDADD = $(NETLIBS) |
@@ -101,6 +102,7 @@ check_load_DEPENDENCIES = check_load.c $(BASEOBJS) popen.o $(DEPLIBS) | |||
101 | check_mrtg_DEPENDENCIES = check_mrtg.c $(DEPLIBS) | 102 | check_mrtg_DEPENDENCIES = check_mrtg.c $(DEPLIBS) |
102 | check_mrtgtraf_DEPENDENCIES = check_mrtgtraf.c $(DEPLIBS) | 103 | check_mrtgtraf_DEPENDENCIES = check_mrtgtraf.c $(DEPLIBS) |
103 | check_mysql_DEPENDENCIES = check_mysql.c $(NETOBJS) $(DEPLIBS) | 104 | check_mysql_DEPENDENCIES = check_mysql.c $(NETOBJS) $(DEPLIBS) |
105 | check_mysql_query_DEPENDENCIES = check_mysql.c $(NETOBJS) $(DEPLIBS) | ||
104 | check_nagios_DEPENDENCIES = check_nagios.c $(BASEOBJS) runcmd.o $(DEPLIBS) | 106 | check_nagios_DEPENDENCIES = check_nagios.c $(BASEOBJS) runcmd.o $(DEPLIBS) |
105 | check_nt_DEPENDENCIES = check_nt.c $(NETOBJS) $(DEPLIBS) | 107 | check_nt_DEPENDENCIES = check_nt.c $(NETOBJS) $(DEPLIBS) |
106 | check_nwstat_DEPENDENCIES = check_nwstat.c $(NETOBJS) $(DEPLIBS) | 108 | check_nwstat_DEPENDENCIES = check_nwstat.c $(NETOBJS) $(DEPLIBS) |