Changelog 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. **************
  2. NRPE Changelog
  3. **************
  4. 1.7 - ??/??/2003
  5. ----------------
  6. - Spec file updates and minor bug fixes (James Peterson)
  7. - Bug fix with default nrpe port definition
  8. - Added sample xinetd config file (nrpe.xinetd)
  9. - Bug fix for command_timeout variable (James Peterson)
  10. 1.6 - 12/30/2002
  11. ----------------
  12. - Updated sample commands to match new plugin argument format
  13. - Added sample init scripts for FreeBSD and Debian (Andrew Ryder)
  14. - Syntax changes (-H option specifies host name in check_nrpe,
  15. -c option specifies config file in nrpe)
  16. - Added command_timeout directive to config file to allow user
  17. to specify timeout for executing plugins
  18. - Added spec file and misc patches for building RPMs (James Peterson)
  19. - Added --with-nrpe-port config directive (James Peterson)
  20. 1.5 - 06/03/2002
  21. ----------------
  22. - Added setuid/setgid option to config file (suggested by Marek Cervenka)
  23. 1.4 - 06/01/2002
  24. ----------------
  25. - Changed STATE_UNKNOWN to value of 3 instead of -1 (old style)
  26. - Minor doc and sample config file changes
  27. 1.3 - 02/21/2002
  28. ----------------
  29. - Name and version change
  30. - Ignore SIGHUP, minor cleanup (Jon Andrews)
  31. 1.2.5 - 12/22/2001
  32. ------------------
  33. - Implemented Beej's sendall() to handle partial send()s
  34. - Added instructions on running under xinetd to README
  35. - Removed some old crud
  36. 1.2.4 - 02/22/2001
  37. ------------------
  38. - I forgot what changes I made. Go figure...
  39. 1.2.3 - 12/21/2000
  40. ------------------
  41. - A bit more documentation on configuring command definitions for the plugin
  42. 1.2.2 - 06/05/2000
  43. ------------------
  44. - Fixed error in docs for running under inetd using TCP wrappers
  45. - Replaced old email address in src/netutils.h with new one
  46. 1.2.1 - 05/07/2000
  47. ------------------
  48. - Removed trapping of SIGCHLD
  49. - Changed wait4() to waitpid() to allow compilation on HP-UX and AIX
  50. 1.2.0 - 04/18/2000
  51. ------------------
  52. - Server forks twice after accepting a client connection, so as to prevent the
  53. creation of zombies
  54. 1.1.5 - 04/07/2000
  55. ------------------
  56. - Fixed a small bug where one debug message was not getting logged properly
  57. 1.1.4 - 03/30/2000
  58. ------------------
  59. - Added option to disable/enable debug messages using the debug option in the
  60. config file
  61. 1.1.3 - 03/11/2000
  62. ------------------
  63. - Changed config file to use an absolute path
  64. - Changed all debug output to use syslog (Rene Klootwijk)
  65. - No convert all data to network order before sending it and convert it back to
  66. host order when receiving it. This makes it possible to mix Solaris and Linux,
  67. e.g. running check_nrpe on Linux and nrpe on Solaris. (Rene Klootwijk)
  68. 1.1.2 - 03/07/2000
  69. ------------------
  70. - Removed unnecessary code in signal handler routine
  71. - Unused signals are no longer trapper
  72. 1.1.1 - 02/28/2000 - RKL
  73. ---------------------------
  74. - Modified syslog code to include string describing the error code.
  75. - Changed hardcoded number in signal handler to its name. This prevented nrpe
  76. to run on Solaris.
  77. - Fixed race condition in accept loop. The result of accept should also be
  78. checked for EINTR.
  79. - Modified recv and send function calls to compile without warnings on Solaris.
  80. - Modified configure.in,configure and Makefile.in to include nsl and socket libs
  81. for Solaris.
  82. - Modified the signal handler to reestablish itself after being called.
  83. 1.1 - 02/24/2000 - Rene Klootwijk <rene@klootwijk.org>
  84. -----------------
  85. - Added ability to bind nrpe to a specific interface by specifying the address
  86. of this interface in the nrpe.cfg file (e.g. server_address=192.168.2.3)
  87. 1.0 - 02/16/2000
  88. ------------------
  89. - Added ability to run as a service under inetd
  90. 1.0b6 - 02/01/2000
  91. ------------------
  92. - Added configure script
  93. - Netutils functions from the NetSaint plugins is now used
  94. - Reset SIGCHLD to default behavior before calling popen() to
  95. prevent race condition with pclose() (Reported by Rene Klootwijk)
  96. - Cleaned up code
  97. 1.0b5 - 01/10/2000
  98. ------------------
  99. - Added init script contributed by Jacob L
  100. - Incorporated syslog code and other patches contributed by Jacob L
  101. 1.0b4 - 11/04/1999
  102. ------------------
  103. - Changed 'allowed_ip' option in configuration file to
  104. 'allowed_hosts' and added support for multiple hosts
  105. - Minor buffer overflow protection fixes
  106. - main() returned STATE_UNKNOWN on successful launch, changed to STATE_OK (jaclu@grm.se)
  107. - Added syslog support (jaclu@grm.se)