mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-20 21:57:10 -04:00
Prep for 1.4.14 release
This commit is contained in:
parent
bbadda8979
commit
bc26fec6d6
6 changed files with 11130 additions and 7709 deletions
15
BUGS
15
BUGS
|
|
@ -2,10 +2,16 @@ This file lists the major bugs from the Nagios Plugins page on Sourceforge
|
|||
at http://sourceforge.net/tracker/?group_id=29880&atid=397597. These are not
|
||||
necessarily verified as errors.
|
||||
|
||||
For the 1.4.13 release:
|
||||
For the 1.4.14 release:
|
||||
|
||||
2832451 - check_snmp regression parsing multi-line snmpget responses
|
||||
2826570 - check_http does not work with some HTTPS servers
|
||||
2823005 - check_swap returns OK if no swap activated
|
||||
2786808 - check_http asks for HTTP/1.1, but doesn't understand chunked
|
||||
2555782 - check_imap fails with SSL3
|
||||
2550254 - check_ldap with starttls requires hostname to match cert name
|
||||
2315953 - check_ping: timeouts when reverse name resolution times out
|
||||
2075933 - check_disk segfault on freebsd 7 if using -p option
|
||||
1985263 - check_ups doesn't disconnect cleanly
|
||||
1984255 - check_swap not built on Solaris 10 and HP-UX 11.11, 11.23
|
||||
1984240 - check_tcp Segmentation fault on HP-UX 11.23
|
||||
1939578 - check_jabber: Always returns WARNING with Openfire server
|
||||
|
|
@ -14,19 +20,14 @@ For the 1.4.13 release:
|
|||
1922579 - check_ldap: ldap_init implicitly converted
|
||||
1904965 - check_apt: SECURITY_RE is not correct
|
||||
1894850 - check_ping: incorrectly parses ping6 output
|
||||
1868822 - check_http link fails with openssl installed
|
||||
1864404 - check_smtp/check_http miscalculate timezones in cert expiry
|
||||
1681516 - output too verbose for various checks
|
||||
1670261 - check_snmp might require snmpget with LD_LIBRARY_PATH
|
||||
1523748 - check_disk should error if warn range is subset of critical
|
||||
1478287 - check_dns fails with CNAMEs
|
||||
1469468 - signal handler in popen.c is broken
|
||||
1381604 - Perlsec breaks any perl plugin with perl 5.8.x
|
||||
1373801 - check_ping timeout on Mandrake 10.1
|
||||
1370031 - check_disk_smb requires DNS agree with NetBIOS names
|
||||
1250982 - check_postgresql: configure test for -lcrypto on OpenBSD
|
||||
1225470 - check_swap perf data incorrect
|
||||
1108499 - check_ping with -U on Debian fails
|
||||
1090549 - check_dhcp ignores DHCP replies
|
||||
990948 - check_disk_smb doesn't allow spaces in share names
|
||||
|
||||
|
|
|
|||
2
NEWS
2
NEWS
|
|
@ -1,6 +1,6 @@
|
|||
This file documents the major additions and syntax changes between releases.
|
||||
|
||||
1.4.14 ...
|
||||
1.4.14 16th September 2009
|
||||
check_http has options to specify the HTTP method (#2155152)
|
||||
check_users thresholds were not working exactly as documented (>= rather than >)
|
||||
Updated tinderbox_build script to point to new tinderbox server
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
SRC_ROOT=`dirname $0`
|
||||
|
||||
NPVF=NP-VERSION-FILE
|
||||
DEF_VER=1.4.13.git
|
||||
DEF_VER=1.4.14.git
|
||||
|
||||
LF='
|
||||
'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_PREREQ(2.59)
|
||||
AC_INIT(nagios-plugins,1.4.13)
|
||||
AC_INIT(nagios-plugins,1.4.14)
|
||||
AC_CONFIG_SRCDIR(NPTest.pm)
|
||||
AC_CONFIG_FILES(gl/Makefile)
|
||||
AC_CONFIG_AUX_DIR(build-aux)
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
PACKAGE_RELEASE="1.4.13"
|
||||
PACKAGE_RELEASE="1.4.14"
|
||||
|
|
|
|||
Loading…
Reference in a new issue