4
0

Changelog 5.1 KB

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