d854adba09
- CTS: Fix cts-lab --list. (gh#ClusterLabs/pacemaker#3723) - Update to version 2.1.9+20241105.e043e6816a: - executor: avoid use-after-free upon shutdown (bsc#1232613, gh#ClusterLabs/pacemaker#3719) - Update to version 2.1.9+20241031.49aab99839 (Pacemaker-2.1.9): - includes: Bump CRM_FEATURE_SET for iso8601 formatted output. - schemas: Add an XML schema for iso8601 output. - tools: Convert iso8601 to formatted output. - Update to version 2.1.8+20241021.40d69ff424 (Pacemaker-2.1.9-rc3): - tools: restore crmadmin default timeout to 30 seconds (bsc#1217259, bsc#1228781, jsc#PED-8311, gh#ClusterLabs/pacemaker#3703) - libcrmcommon: any negative interval is an error - agents: always allow attribute agent to show metadata - agents: use RESOURCENAME in attribute agent metadata - agents: use configured run directory in attribute agent - controld: leave xml-src attribute empty when no DC selected #2902 (bsc#1217259, bsc#1228781, jsc#PED-8311, gh#ClusterLabs/pacemaker#3702) - Update to version 2.1.8+20241015.33f3052b89 (Pacemaker-2.1.9-rc2): - pacemakerd: combine subdaemon start-up logs - libcrmcommon: avoid potential overflow when adding seconds - libcib: Perform server-side remote CIB reads asynchronously. - libcib: Perform client-side remote CIB reads asynchronously. - tools: crm_resource returns error on failed schema upgrade - libcrmcommon: Don't assert on failure to write errors. (gh#ClusterLabs/pacemaker#3684) - Update to version 2.1.8+20241003.95cef6b307 (Pacemaker-2.1.9-rc1): - NLS: update translations for current code base - scheduler: Fixed memory leak when searching for unfencing devices. (gh#ClusterLabs/pacemaker#3678) OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=405
24 lines
634 B
Bash
24 lines
634 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2007 Dejan Muhamedagic <dmuhamedagic@suse.com>
|
|
# Copyright (C) 2015 Kristoffer Gronlund <kgronlund@suse.com>
|
|
# Copyright (C) 2015 Gao,Yan <ygao@suse.com>
|
|
#
|
|
# Replaced with crm report
|
|
PARENT_COMMAND="$(ps -o comm= $PPID)"
|
|
PROG="$(basename "$0")"
|
|
|
|
die() {
|
|
echo "$PROG: $*"
|
|
exit 1
|
|
}
|
|
[ "$(basename "$PARENT_COMMAND")" = "crm" ] && die "called itself in a loop, aborting"
|
|
if which crm > /dev/null 2>&1; then
|
|
crm report "$@"
|
|
elif [ -x /usr/sbin/crm ]; then
|
|
/usr/sbin/crm report "$@"
|
|
else
|
|
#die "crm_report has been deprecated: Please install crmsh, which replaces it"
|
|
/usr/sbin/crm_report.pacemaker "$@"
|
|
fi
|