mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-03 18:49:29 -05:00
- now roughly feature-complete.
- various bugfixes, esp. offset calculation.
- enhanced the asynchronous offset polling to set requests that
haven't recieved a response in >= 1 second to stale and retransmit them,
which results in much better performance on unreliable networks.
- we only spend timeout/2 seconds polling offsets, and if we don't get
everything by that point we work with what we have and set status to
warning/critical depending on how much data we have.
- set the same defaults as the perl script.
- commit changes to configure.in to support automatic building of check_apt
(if apt-get is installed and regex libraries available) and check_ntp
(unconditionally), now defaulting to check_ntp.c instead of the perl script.
if this is an issue we can back out the commit of course. an eye
should be kept on check_ntp building and running correctly in different
environments, esp. 64-bit and big-endian platforms, and those with more
"esoteric" API's (do any of the platforms not have poll()?).
- similar changes to Makefile.am's.
- common.h: add statement to include sys/poll.h
- runcmd.c: exit STATE_UNKNOWN if execve() fails.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1386 f882894a-f735-0410-b71e-b25c423dba1c
34 lines
957 B
Makefile
34 lines
957 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUFFIXES = .pl .sh
|
|
|
|
VPATH=$(top_srcdir) $(top_srcdir)/plugins-scripts $(top_srcdir)/plugins-scripts/t
|
|
|
|
libexec_SCRIPTS = check_breeze check_disk_smb check_flexlm check_ircd \
|
|
check_log check_oracle check_rpc check_sensors check_wave \
|
|
check_ifstatus check_ifoperstatus check_mailq check_file_age \
|
|
utils.sh utils.pm
|
|
|
|
EXTRA_DIST=check_breeze.pl check_disk_smb.pl check_flexlm.pl check_ircd.pl \
|
|
check_log.sh check_ntp.pl check_oracle.sh check_rpc.pl check_sensors.sh \
|
|
check_ifstatus.pl check_ifoperstatus.pl check_wave.pl check_mailq.pl check_file_age.pl \
|
|
utils.sh.in utils.pm.in t
|
|
|
|
TESTS_ENVIRONMENT=perl -I $(top_builddir) -I $(top_srcdir)
|
|
|
|
TESTS = @SCRIPT_TEST@
|
|
|
|
test:
|
|
perl -I $(top_builddir) -I $(top_srcdir) ../test.pl
|
|
|
|
CLEANFILES=$(libexec_SCRIPTS)
|
|
|
|
AM_INSTALL_PROGRAM_FLAGS=@INSTALL_OPTS@
|
|
|
|
.pl :
|
|
$(AWK) -f ./subst $< > $@
|
|
chmod +x $@
|
|
|
|
.sh :
|
|
$(AWK) -f ./subst $< > $@
|
|
chmod +x $@
|