Files
nagios/nagios-random_data.patch

13 lines
398 B
Diff
Raw Permalink Normal View History

- update to 4.5.1 * Fix text rendering in Configuration -> Command Expansion when the command ends in whitespace (Thanks Joran LEREEC for reporting this issue) - from 4.5.0 Note: this release is backward-compatible, but does include updates to the header files. If you are using any NEB modules in your monitoring solution, you will need to recompile them with the new nagios-4.5.0 headers to avoid segmentation faults. ENHANCEMENTS * Add event_handler_period configuration option to hosts and services (#913) * Add external commands CHANGE_HOST_EVENT_HANDLER_TIMEPERIOD and CHANGE_SVC_EVENT_HANDLER_TIMEPERIOD (#913) * Added support for separating your build directory from your source directory (#867) - from older versions: * Fix missing macros when running performance data commands (#904) * Fix broken logo images in status pages (regression from 4.4.12) (#917) * Clean up most compiler warnings on GCC and clang (#901) * Fix incorrect HTML entity escaping in CGIs (#907, #902) * Fix issue where predictive dependency checks were not being scheduled for services (#908) * Fix several typos (#898, #884) * Fix incorrect error message in preflight check (#865) * Fix use-after-free in qh_deregister_handler (#866) * Fix memory leak in qh_deregister_handler (#866) * Fix mismatched host/service behavior when changing from SOFT to HARD state (#891) * Minor performance improvements in CGI utility functions (#866) * Fix memory leak in nagiostats.c when using -c, -s, -d, or -D multiple times (#888) * Improve service scheduling at startup (#887) OBS-URL: https://build.opensuse.org/package/show/server:monitoring/nagios?expand=0&rev=301
2024-04-16 22:26:42 +00:00
Index: nagios-4.5.1/worker/ping/worker-ping.c
===================================================================
- update to 4.5.1 * Fix text rendering in Configuration -> Command Expansion when the command ends in whitespace (Thanks Joran LEREEC for reporting this issue) - from 4.5.0 Note: this release is backward-compatible, but does include updates to the header files. If you are using any NEB modules in your monitoring solution, you will need to recompile them with the new nagios-4.5.0 headers to avoid segmentation faults. ENHANCEMENTS * Add event_handler_period configuration option to hosts and services (#913) * Add external commands CHANGE_HOST_EVENT_HANDLER_TIMEPERIOD and CHANGE_SVC_EVENT_HANDLER_TIMEPERIOD (#913) * Added support for separating your build directory from your source directory (#867) - from older versions: * Fix missing macros when running performance data commands (#904) * Fix broken logo images in status pages (regression from 4.4.12) (#917) * Clean up most compiler warnings on GCC and clang (#901) * Fix incorrect HTML entity escaping in CGIs (#907, #902) * Fix issue where predictive dependency checks were not being scheduled for services (#908) * Fix several typos (#898, #884) * Fix incorrect error message in preflight check (#865) * Fix use-after-free in qh_deregister_handler (#866) * Fix memory leak in qh_deregister_handler (#866) * Fix mismatched host/service behavior when changing from SOFT to HARD state (#891) * Minor performance improvements in CGI utility functions (#866) * Fix memory leak in nagiostats.c when using -c, -s, -d, or -D multiple times (#888) * Improve service scheduling at startup (#887) OBS-URL: https://build.opensuse.org/package/show/server:monitoring/nagios?expand=0&rev=301
2024-04-16 22:26:42 +00:00
--- nagios-4.5.1.orig/worker/ping/worker-ping.c
+++ nagios-4.5.1/worker/ping/worker-ping.c
Accepting request 642094 from home:lrupp:branches:server:monitoring - update to 4.4.2 * Fix comment data being duplicated after a `service nagios reload` or similar (#549) (Bryan Heden) * Fix check_interval and retry_interval not changing at the appropriate times (#551) (Scott Wilkerson) * Fixed passive checks sending recovery email when host was previously UP (#552) (Scott Wilkerson) * Fixed flapping comments duplication on nagios reload (#554) (Christian Jung) * Fix for CVE-2018-13441, CVE-2018-13458, CVE-2018-13457 null pointer dereference (Trevor McDonald) * Fixed syntax error in file: default-init.in (#558) (Christian Zettel) * Reset current notification number and state flags when the host recovers, reset all service variables when they recover fixes (#557) (Scott Wilkerson) * Fixed wrong counting of service status totals when showing servicegroup details (#548) (Christian Zettel, Bryan Heden) * Fixed avail.cgi not printing CSV output when checkbox is checked (for any type: host/service/hostgroup/servicegroup) (#570) (Bryan Heden) * Fixed nagios not logging SOFT state changes after 1 (Scott Wilkerson) 4.4.1 - 2018-06-25 ------------------ * Revert some macro->kvvec changes causing problems when `enable_environment_macros` was enabled (Bryan Heden) * Adjust `process_macro_r` function logic so that it handles macros properly (Bryan Heden) * Fix spec file for systemd (Karsten Weiss, Fr3dY, Bryan Heden) * Fix bug where `ssize_t` typedef to int on some systems (Bryan Heden) 4.4.0 - 2018-06-19 ------------------ ENHANCEMENTS OBS-URL: https://build.opensuse.org/request/show/642094 OBS-URL: https://build.opensuse.org/package/show/server:monitoring/nagios?expand=0&rev=265
2018-10-18 07:19:03 +00:00
@@ -84,6 +84,7 @@ int main( int argc, char **argv, char **
if( worker( worker_socket)) {
exit( 1);
}
- update to 4.5.1 * Fix text rendering in Configuration -> Command Expansion when the command ends in whitespace (Thanks Joran LEREEC for reporting this issue) - from 4.5.0 Note: this release is backward-compatible, but does include updates to the header files. If you are using any NEB modules in your monitoring solution, you will need to recompile them with the new nagios-4.5.0 headers to avoid segmentation faults. ENHANCEMENTS * Add event_handler_period configuration option to hosts and services (#913) * Add external commands CHANGE_HOST_EVENT_HANDLER_TIMEPERIOD and CHANGE_SVC_EVENT_HANDLER_TIMEPERIOD (#913) * Added support for separating your build directory from your source directory (#867) - from older versions: * Fix missing macros when running performance data commands (#904) * Fix broken logo images in status pages (regression from 4.4.12) (#917) * Clean up most compiler warnings on GCC and clang (#901) * Fix incorrect HTML entity escaping in CGIs (#907, #902) * Fix issue where predictive dependency checks were not being scheduled for services (#908) * Fix several typos (#898, #884) * Fix incorrect error message in preflight check (#865) * Fix use-after-free in qh_deregister_handler (#866) * Fix memory leak in qh_deregister_handler (#866) * Fix mismatched host/service behavior when changing from SOFT to HARD state (#891) * Minor performance improvements in CGI utility functions (#866) * Fix memory leak in nagiostats.c when using -c, -s, -d, or -D multiple times (#888) * Improve service scheduling at startup (#887) OBS-URL: https://build.opensuse.org/package/show/server:monitoring/nagios?expand=0&rev=301
2024-04-16 22:26:42 +00:00
+ return 1;
}
void parse_worker_command_line( int argc, char **argv, char **env,