Changelog 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. **************
  2. NRPE Changelog
  3. **************
  4. 2.2 - 01/22/2006
  5. ----------------
  6. - Spec file fix
  7. - Patch to add Tru64 and IRIX support (Ton Voon)
  8. - Updated config.sub and config.guess
  9. - Fixed bug with config file lines with only whitespace
  10. - Fixed bug with missing getopt() command line option for -V
  11. - Removed sample FreeBSD init script (now maintained by FreeBSD port)
  12. - Added config file option for writing a PID file
  13. 2.1 - 01/19/2004
  14. ----------------
  15. - Replaced host access list with TCP wrapper support
  16. - Removed length restrictions for command names and command lines
  17. - Configure script patch for getopt_long on Solaris
  18. - Bug fixes for accept() on HP-UX 11.0
  19. - Init script for SUSE Linux (Subhendu Ghosh)
  20. - SSL protocol used is now limited to TLSv1
  21. - Any output from plugins after first line is now ignored before
  22. plugin process is closed
  23. 2.0 - 09/08/2003
  24. ----------------
  25. - Added support for passing arguments to command
  26. - NRPE daemon can no longer be run as root user/group
  27. - Added getopt support
  28. - Added 'include' variable to config file to allow inclusion
  29. of external config files
  30. - Added 'include_dir' variable to allow inclusion of external
  31. config files in directories (with recursion)
  32. - Added native SSL support (Derrick Bennett)
  33. - Added my_strsep(), as Solaris doesn't have strsep()
  34. - Added license exemption for use with OpenSSL
  35. 1.8 - 01/16/2003
  36. ----------------
  37. - Daemon now closes stdio/out/err properly (James Peterson)
  38. - Makefile changes (James Peterson)
  39. - Mode command line option bug fix in daemon
  40. - Fixed incorrect command line options in check_nrpe plugin
  41. 1.7 - 01/08/2003
  42. ----------------
  43. - Spec file updates and minor bug fixes (James Peterson)
  44. - Bug fix with default nrpe port definition
  45. - Added sample xinetd config file (nrpe.xinetd)
  46. - Bug fix for command_timeout variable (James Peterson)
  47. 1.6 - 12/30/2002
  48. ----------------
  49. - Updated sample commands to match new plugin argument format
  50. - Added sample init scripts for FreeBSD and Debian (Andrew Ryder)
  51. - Syntax changes (-H option specifies host name in check_nrpe,
  52. -c option specifies config file in nrpe)
  53. - Added command_timeout directive to config file to allow user
  54. to specify timeout for executing plugins
  55. - Added spec file and misc patches for building RPMs (James Peterson)
  56. - Added --with-nrpe-port config directive (James Peterson)
  57. 1.5 - 06/03/2002
  58. ----------------
  59. - Added setuid/setgid option to config file (suggested by Marek Cervenka)
  60. 1.4 - 06/01/2002
  61. ----------------
  62. - Changed STATE_UNKNOWN to value of 3 instead of -1 (old style)
  63. - Minor doc and sample config file changes
  64. 1.3 - 02/21/2002
  65. ----------------
  66. - Name and version change
  67. - Ignore SIGHUP, minor cleanup (Jon Andrews)
  68. 1.2.5 - 12/22/2001
  69. ------------------
  70. - Implemented Beej's sendall() to handle partial send()s
  71. - Added instructions on running under xinetd to README
  72. - Removed some old crud
  73. 1.2.4 - 02/22/2001
  74. ------------------
  75. - I forgot what changes I made. Go figure...
  76. 1.2.3 - 12/21/2000
  77. ------------------
  78. - A bit more documentation on configuring command definitions for the plugin
  79. 1.2.2 - 06/05/2000
  80. ------------------
  81. - Fixed error in docs for running under inetd using TCP wrappers
  82. - Replaced old email address in src/netutils.h with new one
  83. 1.2.1 - 05/07/2000
  84. ------------------
  85. - Removed trapping of SIGCHLD
  86. - Changed wait4() to waitpid() to allow compilation on HP-UX and AIX
  87. 1.2.0 - 04/18/2000
  88. ------------------
  89. - Server forks twice after accepting a client connection, so as to prevent the
  90. creation of zombies
  91. 1.1.5 - 04/07/2000
  92. ------------------
  93. - Fixed a small bug where one debug message was not getting logged properly
  94. 1.1.4 - 03/30/2000
  95. ------------------
  96. - Added option to disable/enable debug messages using the debug option in the
  97. config file
  98. 1.1.3 - 03/11/2000
  99. ------------------
  100. - Changed config file to use an absolute path
  101. - Changed all debug output to use syslog (Rene Klootwijk)
  102. - No convert all data to network order before sending it and convert it back to
  103. host order when receiving it. This makes it possible to mix Solaris and Linux,
  104. e.g. running check_nrpe on Linux and nrpe on Solaris. (Rene Klootwijk)
  105. 1.1.2 - 03/07/2000
  106. ------------------
  107. - Removed unnecessary code in signal handler routine
  108. - Unused signals are no longer trapper
  109. 1.1.1 - 02/28/2000 - RKL
  110. ---------------------------
  111. - Modified syslog code to include string describing the error code.
  112. - Changed hardcoded number in signal handler to its name. This prevented nrpe
  113. to run on Solaris.
  114. - Fixed race condition in accept loop. The result of accept should also be
  115. checked for EINTR.
  116. - Modified recv and send function calls to compile without warnings on Solaris.
  117. - Modified configure.in,configure and Makefile.in to include nsl and socket libs
  118. for Solaris.
  119. - Modified the signal handler to reestablish itself after being called.
  120. 1.1 - 02/24/2000 - Rene Klootwijk <rene@klootwijk.org>
  121. -----------------
  122. - Added ability to bind nrpe to a specific interface by specifying the address
  123. of this interface in the nrpe.cfg file (e.g. server_address=192.168.2.3)
  124. 1.0 - 02/16/2000
  125. ------------------
  126. - Added ability to run as a service under inetd
  127. 1.0b6 - 02/01/2000
  128. ------------------
  129. - Added configure script
  130. - Netutils functions from the NetSaint plugins is now used
  131. - Reset SIGCHLD to default behavior before calling popen() to
  132. prevent race condition with pclose() (Reported by Rene Klootwijk)
  133. - Cleaned up code
  134. 1.0b5 - 01/10/2000
  135. ------------------
  136. - Added init script contributed by Jacob L
  137. - Incorporated syslog code and other patches contributed by Jacob L
  138. 1.0b4 - 11/04/1999
  139. ------------------
  140. - Changed 'allowed_ip' option in configuration file to
  141. 'allowed_hosts' and added support for multiple hosts
  142. - Minor buffer overflow protection fixes
  143. - main() returned STATE_UNKNOWN on successful launch, changed to STATE_OK (jaclu@grm.se)
  144. - Added syslog support (jaclu@grm.se)