- build: Fix default pacemaker-remoted path - Update to version 3.0.0+20250210.af3642fbf6: - libcrmcluster: prevent external callers from triggering assertion when connecting to cluster (gh#ClusterLabs/pacemaker#3821) - Update to version 3.0.0+20250207.d06c888ba7: - libpacemaker: Reset scheduler object in pcmk_simulate() - libpe_status: Make cluster_status() idempotent - tools: Fix overflow in crm_simulate --repeat - libpacemaker: Handle scandir() error in pcmk__profile_dir() - libpacemaker: Fix mem leak in pcmk__profile_dir() - tools: Avoid crash in crm_simulate --profile - Update to version 3.0.0+20250205.88e9ec1325: - libcrmservices: Unref the dbus connection... (gh#ClusterLabs/pacemaker#3816) - libcrmservices: Don't leak msg if systemd_proxy is NULL. (gh#ClusterLabs/pacemaker#3816) - Update to version 3.0.0+20250203.f950b1d05d: - python: Add python value for new CRM_EX_NO_DC exit code. (gh#ClusterLabs/pacemaker#3815) - libcrmcommon: Fix memory leak in text_end_list()/curses_end_list() (gh#ClusterLabs/pacemaker#3814) - crmadmin: return error if DC is not elected #2902 #3606 (gh#ClusterLabs/pacemaker#3716) - Update to version 3.0.0+20250128.0de22e5f75: - libraries: Update version numbers in so names - Rebase: * bug-995365_pacemaker-cts-restart-systemd-journald.patch - Update to version 3.0.0+20250114.7dc494a96f: - controller: best practices for send_stonith_update() (gh#ClusterLabs/pacemaker#3796) OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/pacemaker?expand=0&rev=409
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
|