jsc#PED-14899 - spec: do not treat fillup templates as configuration files - build: install the default logrotate config into /usr/etc/logrotate.d - build: create directories in /var via tmpfiles.d - build: create hacluster user and haclient group via sysusers.d - Update to version 3.0.1+20251208.f7f28ab3: - agents: Deprecate allow_stonith_disabled param for controld RA - agents: New allow_fencing_disabled param for controld RA - agents: Use case-insensitive property matching in controld RA - schemas: Deprecate stonith-timeout-ms in crm_mon output - schemas: Deprecate stonith-enabled in crm_mon output - various: New fencing-timeout-ms in crm_mon/pcmk_status output - schemas: New fencing-timeout-ms attribute in crm_mon schema - various: New fencing-enabled in crm_mon/pcmk_status output - schemas: New fencing-enabled attribute in crm_mon schema - Update to version 3.0.1+20251130.37f6466b: - tools: cibadmin --xpath --delete-all deletes all matches again - various: Use const for a few string pointer variables - Update to version 3.0.1+20251125.39c07b64: - cts: Respect cts-lab --nic option if specified for IPv4 (gh#ClusterLabs/pacemaker#3986) - cts: cts-lab --nic option defaults to eth0 only for an IPv6 link local address (gh#ClusterLabs/pacemaker#3986) - Update to version 3.0.1+20251124.253fbe4c: - controller: Ask attribute manager to purge fenced nodes' attributes - controller: Don't purge transient attributes on node loss (gh#ClusterLabs/pacemaker#3991) OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=423
46 lines
2.3 KiB
Diff
46 lines
2.3 KiB
Diff
commit b802c689cdad03a185c5c6689741e2a4db8d5924
|
|
Author: Gao,Yan <ygao@suse.com>
|
|
Date: Thu Mar 14 09:41:53 2013 +0800
|
|
|
|
Log: Change some messages to notice level (bnc#806256)
|
|
|
|
Index: pacemaker-3.0.1+20251119.6fa73e16/daemons/controld/controld_membership.c
|
|
===================================================================
|
|
--- pacemaker-3.0.1+20251119.6fa73e16.orig/daemons/controld/controld_membership.c
|
|
+++ pacemaker-3.0.1+20251119.6fa73e16/daemons/controld/controld_membership.c
|
|
@@ -458,7 +458,7 @@ crm_update_quorum(gboolean quorum, gbool
|
|
pcmk__xe_set_int(update, PCMK_XA_HAVE_QUORUM, quorum);
|
|
pcmk__xe_set(update, PCMK_XA_DC_UUID, controld_globals.our_uuid);
|
|
|
|
- crm_debug("Updating quorum status to %s", pcmk__btoa(quorum));
|
|
+ crm_notice("Updating quorum status to %s", pcmk__btoa(quorum));
|
|
controld_update_cib(PCMK_XE_CIB, update, cib_none,
|
|
cib_quorum_update_complete);
|
|
pcmk__xml_free(update);
|
|
Index: pacemaker-3.0.1+20251119.6fa73e16/daemons/controld/controld_transition.c
|
|
===================================================================
|
|
--- pacemaker-3.0.1+20251119.6fa73e16.orig/daemons/controld/controld_transition.c
|
|
+++ pacemaker-3.0.1+20251119.6fa73e16/daemons/controld/controld_transition.c
|
|
@@ -179,7 +179,7 @@ do_te_invoke(long long action, enum crmd
|
|
controld_globals.transition_graph = create_blank_graph();
|
|
return);
|
|
|
|
- crm_info("Processing graph %d (ref=%s) derived from %s",
|
|
+ crm_notice("Processing graph %d (ref=%s) derived from %s",
|
|
controld_globals.transition_graph->id, ref, graph_input);
|
|
|
|
te_reset_job_counts();
|
|
Index: pacemaker-3.0.1+20251119.6fa73e16/daemons/fenced/fenced_remote.c
|
|
===================================================================
|
|
--- pacemaker-3.0.1+20251119.6fa73e16.orig/daemons/fenced/fenced_remote.c
|
|
+++ pacemaker-3.0.1+20251119.6fa73e16/daemons/fenced/fenced_remote.c
|
|
@@ -711,7 +711,7 @@ remote_op_timeout_one(gpointer userdata)
|
|
static void
|
|
finalize_timed_out_op(remote_fencing_op_t *op, const char *reason)
|
|
{
|
|
- crm_debug("Action '%s' targeting %s for client %s timed out "
|
|
+ crm_notice("Action '%s' targeting %s for client %s timed out "
|
|
QB_XS " id=%.8s",
|
|
op->action, op->target, op->client_name, op->id);
|
|
|