32e626790c
- Update to version 2.0.5+20201202.ba59be712 (Pacemaker-2.0.5): - xml: Revert to correct schema for alerts-3.5 - tools: match calloc() with free() in crm_resource - tools: "Connectivity is lost" may not be displayed even if the ping communication is lost. - Update to version 2.0.4+20201116.ae2c04b54: - tools: make cibsecret use bash - fencer: allow peer configuration requests - Update to version 2.0.4+20201027.31aa4f551: - pacemakerd: handle shutdown requests better - daemons,libcrmcommon: send status code with client acks - fencer: restrict certain IPC requests to privileged users (CVE-2020-25654, bsc#1177916) - pacemakerd: ignore shutdown requests from unprivileged users (CVE-2020-25654, bsc#1177916) - pacemakerd: check client for NULL before using it - executor: restrict certain IPC requests to Pacemaker daemons (CVE-2020-25654, bsc#1177916) - executor: return appropriate error code when no remote support - executor: mark controller connections to pacemaker-remoted as privileged - executor: show CRM_OP_REGISTER rc in debug message - Update to version 2.0.4+20201022.354625c62: - tools: revert some changes in crm_resource NULL checks - xml: Mark new crm_mon attributes as optional. - scheduler: fix build when DEFAULT_CONCURRENT_FENCING_TRUE is set - Update to version 2.0.4+20201019.878658661: - cib: create reply when needed for diff - cib: only build reply when needed - Update to version 2.0.4+20201014.b0ef36d82: OBS-URL: https://build.opensuse.org/request/show/853533 OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=343
23 lines
833 B
Diff
23 lines
833 B
Diff
Index: pacemaker-2.0.4+20200819.114974685/daemons/execd/execd_commands.c
|
|
===================================================================
|
|
--- pacemaker-2.0.4+20200819.114974685.orig/daemons/execd/execd_commands.c
|
|
+++ pacemaker-2.0.4+20200819.114974685/daemons/execd/execd_commands.c
|
|
@@ -198,7 +198,7 @@ static void
|
|
log_finished(lrmd_cmd_t * cmd, int exec_time, int queue_time)
|
|
{
|
|
char pid_str[32] = { 0, };
|
|
- int log_level = LOG_INFO;
|
|
+ int log_level = LOG_NOTICE;
|
|
|
|
if (cmd->last_pid) {
|
|
snprintf(pid_str, 32, "%d", cmd->last_pid);
|
|
@@ -223,7 +223,7 @@ log_finished(lrmd_cmd_t * cmd, int exec_
|
|
static void
|
|
log_execute(lrmd_cmd_t * cmd)
|
|
{
|
|
- int log_level = LOG_INFO;
|
|
+ int log_level = LOG_NOTICE;
|
|
|
|
if (pcmk__str_eq(cmd->action, "monitor", pcmk__str_casei)) {
|
|
log_level = LOG_DEBUG;
|