1e37830752
...for release candidate: Pacemaker-2.0.0-rc4, for full details, see included ChangeLog file or https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-2.0.0-rc4 . as a special note, previous release candidate, rc3, had rolling upgrades broken, and if that is required, that particular release shall be skipped in the upgrade path altogether Adapt spec file more akin to upstream version including: . as part of the update process, possibly move old log files as implicitly used prior to 2.0 so there's a (limited) continuity with the new implicit location, preventing clutter and confusion (ce2e74c99, 765eb3f24) . move cts-exec-helper from -cli under main package (a2dc2a67e) . -cts backed with new helpers and, tangentially, dummy systemd service file transiently generated on-demand again (fa2d43445, d52b001b1) Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
952 lines
37 KiB
RPMSpec
952 lines
37 KiB
RPMSpec
# Globals and defines to control package behavior (configure these as desired)
|
|
|
|
## User and group to use for nonprivileged services
|
|
%global uname hacluster
|
|
%global gname haclient
|
|
|
|
## Where to install Pacemaker documentation
|
|
%global pcmk_docdir %{_docdir}/%{name}
|
|
|
|
## GitHub entity that distributes source (for ease of using a fork)
|
|
%global github_owner ClusterLabs
|
|
|
|
## Upstream pacemaker version, and its package version (specversion
|
|
## can be incremented to build packages reliably considered "newer"
|
|
## than previously built packages with the same pcmkversion)
|
|
%global pcmkversion 2.0.0
|
|
%global specversion 1
|
|
|
|
## Upstream commit (or git tag, such as "Pacemaker-" plus the
|
|
## {pcmkversion} macro for an official release) to use for this package
|
|
%global commit Pacemaker-2.0.0-rc4
|
|
## Since git v2.11, the extent of abbreviation is autoscaled by default
|
|
## (used to be constant of 7), so we need to convey it for non-tags, too.
|
|
%global commit_abbrev 9
|
|
|
|
## Nagios source control identifiers
|
|
%global nagios_name nagios-agents-metadata
|
|
%global nagios_hash 105ab8a7b2c16b9a29cf1c1596b80136eeef332b
|
|
|
|
|
|
# Define globals for convenient use later
|
|
|
|
## Workaround to use parentheses in other globals
|
|
%global lparen (
|
|
%global rparen )
|
|
|
|
## Short version of git commit
|
|
%define shortcommit %(c=%{commit}; case ${c} in
|
|
Pacemaker-*%{rparen} echo ${c:10};;
|
|
*%{rparen} echo ${c:0:%{commit_abbrev}};; esac)
|
|
|
|
## Whether this is a tagged release
|
|
%define tag_release %([ %{commit} != Pacemaker-%{shortcommit} ]; echo $?)
|
|
|
|
## Whether this is a release candidate (in case of a tagged release)
|
|
%define pre_release %([ "%{tag_release}" -eq 0 ] || {
|
|
case "%{shortcommit}" in *-rc[[:digit:]]*%{rparen} false;;
|
|
esac; }; echo $?)
|
|
|
|
## Heuristic used to infer bleeding-edge deployments that are
|
|
## less likely to have working versions of the documentation tools
|
|
%define bleeding %(test ! -e /etc/yum.repos.d/fedora-rawhide.repo; echo $?)
|
|
|
|
## Base GnuTLS cipher priorities (presumably only the initial, required keyword)
|
|
## overridable with "rpmbuild --define 'pcmk_gnutls_priorities PRIORITY-SPEC'"
|
|
%define gnutls_priorities %{?pcmk_gnutls_priorities}%{!?pcmk_gnutls_priorities:@SYSTEM}
|
|
|
|
## Turn off auto-compilation of Python files outside site-packages directory,
|
|
## so that the -libs-devel package is multilib-compliant (no *.py[co] files)
|
|
## (py_auto_byte_compile macro: https://bugzilla.redhat.com/574437)
|
|
## XXX keep an eye on https://pagure.io/packaging-committee/issue/755
|
|
%undefine py_auto_byte_compile
|
|
|
|
## Values that differ by Python major version
|
|
%global python_path /usr/bin/python%{?python3_pkgversion}%{!?python3_pkgversion:3}
|
|
%global python_pkg python3
|
|
%global python_min 3.2
|
|
%define py_site %{?python3_sitelib}%{!?python3_sitelib:%(
|
|
python3 -c 'from distutils.sysconfig import get_python_lib as gpl; print(gpl(1))' 2>/dev/null)}
|
|
|
|
|
|
# Define conditionals so that "rpmbuild --with <feature>" and
|
|
# "rpmbuild --without <feature>" can enable and disable specific features
|
|
|
|
## NOTE: skip --with stonith
|
|
|
|
## Add option to create binaries suitable for use with profiling tools
|
|
%bcond_with profiling
|
|
|
|
## Add option to create binaries with coverage analysis
|
|
%bcond_with coverage
|
|
|
|
## Add option to skip generating documentation
|
|
## (the build tools aren't available everywhere)
|
|
%bcond_without doc
|
|
|
|
## Add option to prefix package version with "0."
|
|
## (so later "official" packages will be considered updates)
|
|
%bcond_with pre_release
|
|
|
|
## NOTE: skip --with upstart_job
|
|
|
|
## Add option to turn off hardening of libraries and daemon executables
|
|
%bcond_without hardening
|
|
|
|
## Add option to disable links for legacy daemon names
|
|
%bcond_without legacy_links
|
|
|
|
|
|
# Keep sane profiling data if requested
|
|
%if %{with profiling}
|
|
|
|
## Disable -debuginfo package and stripping binaries/libraries
|
|
%define debug_package %{nil}
|
|
|
|
%endif
|
|
|
|
|
|
# Define the release version
|
|
# (do not look at externally enforced pre-release flag for tagged releases
|
|
# as only -rc tags, captured with the second condition, implies that then)
|
|
%if (!%{tag_release} && %{with pre_release}) || 0%{pre_release}
|
|
%if 0%{pre_release}
|
|
%define pcmk_release 0.%{specversion}.%(s=%{shortcommit}; echo ${s: -3})
|
|
%else
|
|
%define pcmk_release 0.%{specversion}.%{shortcommit}.git
|
|
%endif
|
|
%else
|
|
%if 0%{tag_release}
|
|
%define pcmk_release %{specversion}
|
|
%else
|
|
%define pcmk_release %{specversion}.%{shortcommit}.git
|
|
%endif
|
|
%endif
|
|
|
|
Name: pacemaker
|
|
Summary: Scalable High-Availability cluster resource manager
|
|
Version: %{pcmkversion}
|
|
Release: %{pcmk_release}%{?dist}
|
|
License: GPLv2+ and LGPLv2+
|
|
Url: http://www.clusterlabs.org
|
|
Group: System Environment/Daemons
|
|
|
|
# Hint: use "spectool -s 0 pacemaker.spec" (rpmdevtools) to check the final URL
|
|
Source0: https://github.com/%{github_owner}/%{name}/archive/%{commit}/%{name}-%{shortcommit}.tar.gz
|
|
Source1: https://github.com/%{github_owner}/%{nagios_name}/archive/%{nagios_hash}/%{nagios_name}-%{nagios_hash}.tar.gz
|
|
# ---
|
|
# patches go here
|
|
|
|
Provides: pcmk-cluster-manager
|
|
Requires: resource-agents
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
Requires: %{name}-cluster-libs = %{version}-%{release}
|
|
Requires: %{name}-cli = %{version}-%{release}
|
|
%{?systemd_requires}
|
|
|
|
# Pacemaker requires a minimum Python functionality
|
|
Requires: %{python_pkg} >= %{python_min}
|
|
BuildRequires: %{python_pkg}-devel >= %{python_min}
|
|
|
|
# Pacemaker requires a minimum libqb functionality
|
|
Requires: libqb >= 0.13.0
|
|
BuildRequires: libqb-devel >= 0.13.0
|
|
|
|
# Basics required for the build (even if usually satisfied through other BRs)
|
|
BuildRequires: coreutils findutils grep sed
|
|
|
|
# Required for core functionality
|
|
BuildRequires: automake autoconf gcc libtool pkgconfig libtool-ltdl-devel
|
|
BuildRequires: pkgconfig(glib-2.0) >= 2.16
|
|
BuildRequires: libxml2-devel libxslt-devel libuuid-devel
|
|
BuildRequires: bzip2-devel
|
|
|
|
# Enables optional functionality
|
|
BuildRequires: ncurses-devel docbook-style-xsl
|
|
BuildRequires: help2man gnutls-devel pam-devel pkgconfig(dbus-1)
|
|
|
|
BuildRequires: pkgconfig(systemd)
|
|
|
|
Requires: corosync >= 2.0.0
|
|
BuildRequires: corosynclib-devel >= 2.0.0
|
|
#XXX
|
|
#BuildRequires: pkgconfig(libcpg)
|
|
#BuildRequires: pkgconfig(libcfg)
|
|
|
|
## (note no avoiding effect when building through non-customized mock)
|
|
%if !%{bleeding}
|
|
%if %{with doc}
|
|
BuildRequires: asciidoc inkscape publican
|
|
%endif
|
|
%endif
|
|
|
|
# git-style patch application
|
|
#BuildRequires: git
|
|
|
|
%description
|
|
Pacemaker is an advanced, scalable High-Availability cluster resource
|
|
manager.
|
|
|
|
It supports more than 16 node clusters with significant capabilities
|
|
for managing resources and dependencies.
|
|
|
|
It will run scripts at initialization, when machines go up or down,
|
|
when related resources fail and can be configured to periodically check
|
|
resource health.
|
|
|
|
Available rpmbuild rebuild options:
|
|
--with(out) : coverage doc hardening pre_release profiling
|
|
|
|
%package cli
|
|
License: GPLv2+ and LGPLv2+
|
|
Summary: Command line tools for controlling Pacemaker clusters
|
|
Group: System Environment/Daemons
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
Requires: perl-TimeDate
|
|
|
|
%description cli
|
|
Pacemaker is an advanced, scalable High-Availability cluster resource
|
|
manager.
|
|
|
|
The %{name}-cli package contains command line tools that can be used
|
|
to query and control the cluster from machines that may, or may not,
|
|
be part of the cluster.
|
|
|
|
%package libs
|
|
License: GPLv2+ and LGPLv2+
|
|
Summary: Core Pacemaker libraries
|
|
Group: System Environment/Daemons
|
|
Requires(pre): shadow-utils
|
|
|
|
%description libs
|
|
Pacemaker is an advanced, scalable High-Availability cluster resource
|
|
manager.
|
|
|
|
The %{name}-libs package contains shared libraries needed for cluster
|
|
nodes and those just running the CLI tools.
|
|
|
|
%package cluster-libs
|
|
License: GPLv2+ and LGPLv2+
|
|
Summary: Cluster Libraries used by Pacemaker
|
|
Group: System Environment/Daemons
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
|
|
%description cluster-libs
|
|
Pacemaker is an advanced, scalable High-Availability cluster resource
|
|
manager.
|
|
|
|
The %{name}-cluster-libs package contains cluster-aware shared
|
|
libraries needed for nodes that will form part of the cluster nodes.
|
|
|
|
%package remote
|
|
License: GPLv2+ and LGPLv2+
|
|
Summary: Pacemaker remote daemon for non-cluster nodes
|
|
Group: System Environment/Daemons
|
|
Provides: pcmk-cluster-manager
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
Requires: %{name}-cli = %{version}-%{release}
|
|
Requires: resource-agents
|
|
# -remote can be fully independent of systemd
|
|
%{?systemd_ordering}%{!?systemd_ordering:%{?systemd_requires}}
|
|
|
|
%description remote
|
|
Pacemaker is an advanced, scalable High-Availability cluster resource
|
|
manager.
|
|
|
|
The %{name}-remote package contains the Pacemaker Remote daemon
|
|
which is capable of extending pacemaker functionality to remote
|
|
nodes not running the full corosync/cluster stack.
|
|
|
|
%package libs-devel
|
|
License: GPLv2+ and LGPLv2+
|
|
Summary: Pacemaker development package
|
|
Group: Development/Libraries
|
|
Requires: %{name}-cts = %{version}-%{release}
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
Requires: %{name}-cluster-libs%{?_isa} = %{version}-%{release}
|
|
Requires: libtool-ltdl-devel%{?_isa} libuuid-devel%{?_isa}
|
|
Requires: libxml2-devel%{?_isa} libxslt-devel%{?_isa}
|
|
Requires: bzip2-devel%{?_isa} glib2-devel%{?_isa}
|
|
Requires: libqb-devel%{?_isa}
|
|
Requires: corosynclib-devel%{?_isa} >= 2.0.0
|
|
|
|
%description libs-devel
|
|
Pacemaker is an advanced, scalable High-Availability cluster resource
|
|
manager.
|
|
|
|
The %{name}-libs-devel package contains headers and shared libraries
|
|
for developing tools for Pacemaker.
|
|
|
|
%package cts
|
|
License: GPLv2+ and LGPLv2+
|
|
Summary: Test framework for cluster-related technologies like Pacemaker
|
|
Group: System Environment/Daemons
|
|
Requires: %{python_pkg} >= %{python_min}
|
|
Requires: %{name}-libs = %{version}-%{release}
|
|
BuildArch: noarch
|
|
|
|
Requires: %{python_pkg}-systemd
|
|
|
|
%description cts
|
|
Test framework for cluster-related technologies like Pacemaker
|
|
|
|
%package doc
|
|
License: CC-BY-SA
|
|
Summary: Documentation for Pacemaker
|
|
Group: Documentation
|
|
BuildArch: noarch
|
|
|
|
%description doc
|
|
Documentation for Pacemaker.
|
|
|
|
Pacemaker is an advanced, scalable High-Availability cluster resource
|
|
manager.
|
|
|
|
%package nagios-plugins-metadata
|
|
License: GPLv3
|
|
Summary: Pacemaker Nagios Metadata
|
|
Group: System Environment/Daemons
|
|
BuildArch: noarch
|
|
# NOTE below are the plugins this metadata uses.
|
|
Requires: nagios-plugins-http
|
|
Requires: nagios-plugins-ldap
|
|
Requires: nagios-plugins-mysql
|
|
Requires: nagios-plugins-pgsql
|
|
Requires: nagios-plugins-tcp
|
|
Requires: pcmk-cluster-manager
|
|
|
|
%description nagios-plugins-metadata
|
|
The metadata files required for Pacemaker to execute the nagios plugin
|
|
monitor resources.
|
|
|
|
%prep
|
|
%setup -q -a 1 -n %{name}-%{commit}
|
|
#global __scm git_am
|
|
#__scm_setup_git
|
|
#autopatch -p1
|
|
|
|
%build
|
|
|
|
# Early versions of autotools (e.g. RHEL <= 5) do not support --docdir
|
|
export docdir=%{pcmk_docdir}
|
|
|
|
export systemdunitdir=%{?_unitdir}%{!?_unitdir:no}
|
|
|
|
%if %{with hardening}
|
|
# prefer distro-provided hardening flags in case they are defined
|
|
# through _hardening_{c,ld}flags macros, configure script will
|
|
# use its own defaults otherwise; if such hardenings are completely
|
|
# undesired, rpmbuild using "--without hardening"
|
|
# (or "--define '_without_hardening 1'")
|
|
export CFLAGS_HARDENED_EXE="%{?_hardening_cflags}"
|
|
export CFLAGS_HARDENED_LIB="%{?_hardening_cflags}"
|
|
export LDFLAGS_HARDENED_EXE="%{?_hardening_ldflags}"
|
|
export LDFLAGS_HARDENED_LIB="%{?_hardening_ldflags}"
|
|
%endif
|
|
|
|
./autogen.sh
|
|
|
|
%{configure} \
|
|
%{?python_path: PYTHON=%{python_path}} \
|
|
%{!?with_hardening: --disable-hardening} \
|
|
%{!?with_legacy_links: --disable-legacy-links} \
|
|
%{?with_profiling: --with-profiling} \
|
|
%{?with_coverage: --with-coverage} \
|
|
%{!?with_doc: --with-brand=} \
|
|
%{?gnutls_priorities: --with-gnutls-priorities="%{gnutls_priorities}"} \
|
|
--with-initdir=%{_initrddir} \
|
|
--localstatedir=%{_var} \
|
|
--with-version=%{version}-%{release} \
|
|
--with-nagios \
|
|
--with-nagios-metadata-dir=%{_datadir}/pacemaker/nagios/plugins-metadata/ \
|
|
--with-nagios-plugin-dir=%{_libdir}/nagios/plugins/
|
|
|
|
make %{_smp_mflags} V=1 all
|
|
|
|
%check
|
|
{ cts/cts-scheduler --run one-or-more-unrunnable-instances \
|
|
&& cts/cts-cli \
|
|
&& touch .CHECKED
|
|
} 2>&1 | sed 's/[fF]ail/faiil/g' # prevent false positives in rpmlint
|
|
[ -f .CHECKED ] && rm -f -- .CHECKED
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} docdir=%{pcmk_docdir} V=1 install
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig
|
|
install -m 644 daemons/pacemakerd/pacemaker.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/pacemaker
|
|
install -m 644 tools/crm_mon.sysconfig ${RPM_BUILD_ROOT}%{_sysconfdir}/sysconfig/crm_mon
|
|
|
|
mkdir -p %{buildroot}%{_datadir}/pacemaker/nagios/plugins-metadata
|
|
for file in $(find %{nagios_name}-%{nagios_hash}/metadata -type f); do
|
|
install -m 644 $file %{buildroot}%{_datadir}/pacemaker/nagios/plugins-metadata
|
|
done
|
|
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_localstatedir}/lib/rpm-state/%{name}
|
|
|
|
# These are not actually scripts
|
|
find %{buildroot} -name '*.xml' -type f -print0 | xargs -0 chmod a-x
|
|
|
|
# Don't package static libs
|
|
find %{buildroot} -name '*.a' -type f -print0 | xargs -0 rm -f
|
|
find %{buildroot} -name '*.la' -type f -print0 | xargs -0 rm -f
|
|
|
|
# Do not package these either
|
|
rm -f %{buildroot}/%{_sbindir}/fence_legacy
|
|
rm -f %{buildroot}/%{_mandir}/man8/fence_legacy.*
|
|
find %{buildroot} -name 'o2cb*' -type f -print0 | xargs -0 rm -f
|
|
|
|
# Don't ship init scripts for systemd based platforms
|
|
rm -f %{buildroot}/%{_initrddir}/pacemaker
|
|
rm -f %{buildroot}/%{_initrddir}/pacemaker_remote
|
|
|
|
%if %{with coverage}
|
|
GCOV_BASE=%{buildroot}/%{_var}/lib/pacemaker/gcov
|
|
mkdir -p $GCOV_BASE
|
|
find . -name '*.gcno' -type f | while read F ; do
|
|
D=`dirname $F`
|
|
mkdir -p ${GCOV_BASE}/$D
|
|
cp $F ${GCOV_BASE}/$D
|
|
done
|
|
%endif
|
|
|
|
%post
|
|
%systemd_post pacemaker.service
|
|
|
|
%preun
|
|
%systemd_preun pacemaker.service
|
|
|
|
%postun
|
|
%systemd_postun_with_restart pacemaker.service
|
|
|
|
%pre remote
|
|
# Stop the service before anything is touched, and remember to restart
|
|
# it as one of the last actions (compared to using systemd_postun_with_restart,
|
|
# this avoids suicide when sbd is in use)
|
|
systemctl --quiet is-active pacemaker_remote
|
|
if [ $? -eq 0 ] ; then
|
|
mkdir -p %{_localstatedir}/lib/rpm-state/%{name}
|
|
touch %{_localstatedir}/lib/rpm-state/%{name}/restart_pacemaker_remote
|
|
systemctl stop pacemaker_remote >/dev/null 2>&1
|
|
else
|
|
rm -f %{_localstatedir}/lib/rpm-state/%{name}/restart_pacemaker_remote
|
|
fi
|
|
|
|
%post remote
|
|
%systemd_post pacemaker_remote.service
|
|
|
|
%preun remote
|
|
%systemd_preun pacemaker_remote.service
|
|
|
|
%postun remote
|
|
# This next line is a no-op, because we stopped the service earlier, but
|
|
# we leave it here because it allows us to revert to the standard behavior
|
|
# in the future if desired
|
|
%systemd_postun_with_restart pacemaker_remote.service
|
|
# Explicitly take care of removing the flag-file(s) upon final removal
|
|
if [ "$1" -eq 0 ] ; then
|
|
rm -f %{_localstatedir}/lib/rpm-state/%{name}/restart_pacemaker_remote
|
|
fi
|
|
|
|
%posttrans remote
|
|
if [ -e %{_localstatedir}/lib/rpm-state/%{name}/restart_pacemaker_remote ] ; then
|
|
systemctl start pacemaker_remote >/dev/null 2>&1
|
|
rm -f %{_localstatedir}/lib/rpm-state/%{name}/restart_pacemaker_remote
|
|
fi
|
|
|
|
%post cli
|
|
%systemd_post crm_mon.service
|
|
if [ "$1" = 2 ]; then
|
|
# Package upgrade, not initial install:
|
|
# Move any pre-2.0 logs to new location to ensure they get rotated
|
|
{ mv -fbS.rpmsave %{_var}/log/pacemaker.log* %{_var}/log/pacemaker \
|
|
|| mv -f %{_var}/log/pacemaker.log* %{_var}/log/pacemaker
|
|
} >/dev/null 2>/dev/null || :
|
|
fi
|
|
|
|
%preun cli
|
|
%systemd_preun crm_mon.service
|
|
|
|
%postun cli
|
|
%systemd_postun_with_restart crm_mon.service
|
|
|
|
%post cts
|
|
%systemd_post pacemaker-cts-dummyd@.service
|
|
|
|
%preun cts
|
|
%systemd_preun pacemaker-cts-dummyd@.service
|
|
|
|
%postun cts
|
|
%systemd_postun_with_restart pacemaker-cts-dummyd@.service
|
|
|
|
%pre libs
|
|
# XXX keep an eye on https://fedoraproject.org/wiki/Changes/SystemdSysusers
|
|
# reopened recently:
|
|
# https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/AETGESYR4IEQJMA6SKL7OERSDZFWFNEU/
|
|
getent group %{gname} >/dev/null || groupadd -r %{gname} -g 189
|
|
getent passwd %{uname} >/dev/null || useradd -r -g %{gname} -u 189 -s /sbin/nologin -c "cluster user" %{uname}
|
|
exit 0
|
|
|
|
%ldconfig_scriptlets libs
|
|
%ldconfig_scriptlets cluster-libs
|
|
|
|
%files
|
|
###########################################################
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/pacemaker
|
|
%{_sbindir}/pacemakerd
|
|
|
|
%{_unitdir}/pacemaker.service
|
|
|
|
%exclude %{_datadir}/pacemaker/nagios/plugins-metadata/*
|
|
|
|
%exclude %{_libexecdir}/pacemaker/cts-log-watcher
|
|
%exclude %{_libexecdir}/pacemaker/cts-support
|
|
%exclude %{_sbindir}/pacemaker-remoted
|
|
%if %{with legacy_links}
|
|
%exclude %{_sbindir}/pacemaker_remoted
|
|
%endif
|
|
%{_libexecdir}/pacemaker/*
|
|
|
|
%{_sbindir}/crm_attribute
|
|
%{_sbindir}/crm_master
|
|
%{_sbindir}/crm_node
|
|
%{_sbindir}/stonith_admin
|
|
|
|
%doc %{_mandir}/man7/pacemaker-controld.*
|
|
%doc %{_mandir}/man7/pacemaker-schedulerd.*
|
|
%doc %{_mandir}/man7/pacemaker-fenced.*
|
|
%doc %{_mandir}/man7/ocf_pacemaker_controld.*
|
|
%doc %{_mandir}/man7/ocf_pacemaker_remote.*
|
|
%doc %{_mandir}/man8/crm_attribute.*
|
|
%doc %{_mandir}/man8/crm_node.*
|
|
%doc %{_mandir}/man8/crm_master.*
|
|
%doc %{_mandir}/man8/pacemakerd.*
|
|
%doc %{_mandir}/man8/stonith_admin.*
|
|
|
|
%doc %{_datadir}/pacemaker/alerts
|
|
|
|
%license licenses/GPLv2
|
|
%doc COPYING
|
|
%doc ChangeLog
|
|
|
|
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pacemaker/cib
|
|
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pacemaker/pengine
|
|
/usr/lib/ocf/resource.d/pacemaker/controld
|
|
/usr/lib/ocf/resource.d/pacemaker/remote
|
|
|
|
%files cli
|
|
%dir %attr (750, root, %{gname}) %{_sysconfdir}/pacemaker
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/pacemaker
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/crm_mon
|
|
|
|
%{_unitdir}/crm_mon.service
|
|
|
|
%{_sbindir}/attrd_updater
|
|
%{_sbindir}/cibadmin
|
|
%{_sbindir}/crm_diff
|
|
%{_sbindir}/crm_error
|
|
%{_sbindir}/crm_failcount
|
|
%{_sbindir}/crm_mon
|
|
%{_sbindir}/crm_resource
|
|
%{_sbindir}/crm_standby
|
|
%{_sbindir}/crm_verify
|
|
%{_sbindir}/crmadmin
|
|
%{_sbindir}/iso8601
|
|
%{_sbindir}/crm_shadow
|
|
%{_sbindir}/crm_simulate
|
|
%{_sbindir}/crm_report
|
|
%{_sbindir}/crm_ticket
|
|
%exclude %{_datadir}/pacemaker/alerts
|
|
%exclude %{_datadir}/pacemaker/tests
|
|
%{_datadir}/pacemaker
|
|
%{_datadir}/snmp/mibs/PCMK-MIB.txt
|
|
|
|
%exclude /usr/lib/ocf/resource.d/pacemaker/controld
|
|
%exclude /usr/lib/ocf/resource.d/pacemaker/o2cb
|
|
%exclude /usr/lib/ocf/resource.d/pacemaker/remote
|
|
|
|
%dir /usr/lib/ocf
|
|
%dir /usr/lib/ocf/resource.d
|
|
/usr/lib/ocf/resource.d/pacemaker
|
|
|
|
%doc %{_mandir}/man7/*
|
|
%exclude %{_mandir}/man7/pacemaker-controld.*
|
|
%exclude %{_mandir}/man7/pacemaker-schedulerd.*
|
|
%exclude %{_mandir}/man7/pacemaker-fenced.*
|
|
%exclude %{_mandir}/man7/ocf_pacemaker_controld.*
|
|
%exclude %{_mandir}/man7/ocf_pacemaker_o2cb.*
|
|
%exclude %{_mandir}/man7/ocf_pacemaker_remote.*
|
|
%doc %{_mandir}/man8/*
|
|
%exclude %{_mandir}/man8/crm_attribute.*
|
|
%exclude %{_mandir}/man8/crm_node.*
|
|
%exclude %{_mandir}/man8/crm_master.*
|
|
%exclude %{_mandir}/man8/fence_legacy.*
|
|
%exclude %{_mandir}/man8/pacemakerd.*
|
|
%exclude %{_mandir}/man8/pacemaker-remoted.*
|
|
%exclude %{_mandir}/man8/stonith_admin.*
|
|
|
|
%license licenses/GPLv2
|
|
%doc COPYING
|
|
%doc ChangeLog
|
|
|
|
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pacemaker
|
|
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pacemaker/blackbox
|
|
%dir %attr (750, %{uname}, %{gname}) %{_var}/lib/pacemaker/cores
|
|
%dir %attr (770, %{uname}, %{gname}) %{_var}/log/pacemaker
|
|
%dir %attr (770, %{uname}, %{gname}) %{_var}/log/pacemaker/bundles
|
|
|
|
%files libs
|
|
%{_libdir}/libcib.so.*
|
|
%{_libdir}/liblrmd.so.*
|
|
%{_libdir}/libcrmservice.so.*
|
|
%{_libdir}/libcrmcommon.so.*
|
|
%{_libdir}/libpe_status.so.*
|
|
%{_libdir}/libpe_rules.so.*
|
|
%{_libdir}/libpengine.so.*
|
|
%{_libdir}/libstonithd.so.*
|
|
%{_libdir}/libtransitioner.so.*
|
|
%license licenses/LGPLv2.1
|
|
%doc COPYING
|
|
%doc ChangeLog
|
|
|
|
%files cluster-libs
|
|
%{_libdir}/libcrmcluster.so.*
|
|
%license licenses/LGPLv2.1
|
|
%doc COPYING
|
|
%doc ChangeLog
|
|
|
|
%files remote
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/pacemaker
|
|
# state directory is shared between the subpackets
|
|
# let rpm take care of removing it once it isn't
|
|
# referenced anymore and empty
|
|
%ghost %dir %{_localstatedir}/lib/rpm-state/%{name}
|
|
%{_unitdir}/pacemaker_remote.service
|
|
|
|
%{_sbindir}/pacemaker-remoted
|
|
%if %{with legacy_links}
|
|
%{_sbindir}/pacemaker_remoted
|
|
%endif
|
|
%{_mandir}/man8/pacemaker-remoted.*
|
|
%license licenses/GPLv2
|
|
%doc COPYING
|
|
%doc ChangeLog
|
|
|
|
%files doc
|
|
%doc %{pcmk_docdir}
|
|
%license licenses/CC-BY-SA-4.0
|
|
|
|
%files cts
|
|
%{py_site}/cts
|
|
%{_datadir}/pacemaker/tests
|
|
|
|
%{_libexecdir}/pacemaker/cts-log-watcher
|
|
%{_libexecdir}/pacemaker/cts-support
|
|
|
|
%license licenses/GPLv2
|
|
%doc COPYING
|
|
%doc ChangeLog
|
|
|
|
%files libs-devel
|
|
%{_includedir}/pacemaker
|
|
%{_libdir}/*.so
|
|
%if %{with coverage}
|
|
%{_var}/lib/pacemaker/gcov
|
|
%endif
|
|
%{_libdir}/pkgconfig/*.pc
|
|
%license licenses/LGPLv2.1
|
|
%doc COPYING
|
|
%doc ChangeLog
|
|
|
|
%files nagios-plugins-metadata
|
|
%dir %{_datadir}/pacemaker/nagios/plugins-metadata
|
|
%attr(0644,root,root) %{_datadir}/pacemaker/nagios/plugins-metadata/*
|
|
%license %{nagios_name}-%{nagios_hash}/COPYING
|
|
|
|
%changelog
|
|
* Wed May 16 2018 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 2.0.0-0.1.rc4
|
|
- Update for new upstream tarball for release candidate: Pacemaker-2.0.0-rc4,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-2.0.0-rc4
|
|
. as a special note, previous release candidate, rc3, had rolling upgrades
|
|
broken, and if that is required, that particular release shall be
|
|
skipped in the upgrade path altogether
|
|
- Adapt spec file more akin to upstream version including:
|
|
. as part of the update process, possibly move old log files as implicitly
|
|
used prior to 2.0 so there's a (limited) continuity with the new implicit
|
|
location, preventing clutter and confusion (ce2e74c99, 765eb3f24)
|
|
. move cts-exec-helper from -cli under main package (a2dc2a67e)
|
|
. -cts backed with new helpers and, tangentially, dummy systemd service
|
|
file transiently generated on-demand again (fa2d43445, d52b001b1)
|
|
|
|
* Wed May 02 2018 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 2.0.0-0.1.rc3
|
|
- Update for new upstream tarball for release candidate: Pacemaker-2.0.0-rc3,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-2.0.0-rc3
|
|
. IMPORTANT: this release candidate, rc3, has rolling upgrades broken,
|
|
and if that is required, this particular release shall be
|
|
skipped in the upgrade path altogether
|
|
- Adapt spec file more akin to upstream version including:
|
|
. new --without legacy_links conditional (c8a7e5225)
|
|
. reflect name change of the auxiliary daemons
|
|
(e4f4a0d64, db5536e40, e2fdc2bac + 9ecbfea1c, 038c465e2 + ed8ce4055a)
|
|
. new dummy systemd service for -cts (bf0a22812)
|
|
. honor system-wide crypto policies once for all, via package-build-time
|
|
configurable "pcmk_gnutls_priorities" defaulting to @SYSTEM as prescribed
|
|
in https://fedoraproject.org/wiki/Packaging:CryptoPolicies
|
|
(based on b3dfce1d3)
|
|
- Adapt spec file akin to current packaging guidelines including:
|
|
. make -nagios-plugins-metadata package noarch
|
|
|
|
* Mon Apr 09 2018 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 2.0.0-0.1.rc2
|
|
- Update for new upstream tarball for release candidate: Pacemaker-2.0.0-rc2,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-2.0.0-rc2
|
|
- Adapt spec file more akin to upstream version including:
|
|
. out-of-tree change from 1.1.18-2 build got subsumed (508ad52e7)
|
|
. %%{_sysconfdir}/pacemaker path got properly owned
|
|
(-cli package; f6e3ab98d)
|
|
. -libs package started to properly declare Requires(pre): shadow-utils
|
|
(293fcc1e8 + b3d49d210)
|
|
. some build conditionals and dependencies dropped for no longer
|
|
(snmp, esmtp; f24bdc6f2 and 1f7374884, respectively) or never
|
|
being relevant (~bison, byacc, flex; 61aef8af4)
|
|
. some dependencies were constrained with new or higher lower bounds:
|
|
corosync needs to be of version 2+ unconditionally (ccd58fe29),
|
|
ditto some others components (~GLib, 1ac2e7cbb), plus both 2 and 3
|
|
versions of Python are now (comprehensively for the auxiliary
|
|
functionality where used) supported upstream with the latter being
|
|
a better fit (453355f8f)
|
|
. package descriptions got to reflect the drop of legacy low-level
|
|
cluster infrastructures (55ab749bf)
|
|
- Adapt spec file akin to current packaging guidelines including:
|
|
. drop some redundant/futile expressions (defattr, "-n %%{name}-libs"
|
|
instead of plain "libs", "timezone hack"), add some notes for future
|
|
. make -cts and -doc packages noarch (former enabled with 088a5e7d4)
|
|
. simplify "systemd_requires" macro invocation, and relax it to
|
|
"systemd_ordering" for -remote package where possible so as not
|
|
to drag systemd into a lightweight system setup (e.g. container)
|
|
needlessly
|
|
. adjust, in a compatible way, common ldconfig invocation with
|
|
post{,un} scriptlets
|
|
(https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets)
|
|
. drop some more unuseful conditionals (upstart_job)
|
|
- Apply some regression fixes on top as patches (PR #1457, #1459)
|
|
|
|
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.1.18-2.2
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.18-2.1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
* Thu Nov 16 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.18-2
|
|
- Make sure neither of pacemaker{,_remoted} is process-limited
|
|
|
|
* Wed Nov 15 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.18-1
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.18,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.18
|
|
- Make -libs-devel package dependencies arch-qualified
|
|
(-cts hasn't been switched at this time, pending further cleanup)
|
|
|
|
* Fri Nov 03 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.18-0.1.rc4
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.18-rc4,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.18-rc4
|
|
|
|
* Thu Oct 26 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.18-0.1.rc3
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.18-rc3,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.18-rc3
|
|
|
|
* Mon Oct 16 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.18-0.1.rc2
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.18-rc2,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.18-rc2
|
|
- Fix check scriptlet so as to work properly also with rpm<4.14 (not strictly
|
|
required since: https://github.com/rpm-software-management/rpm/pull/249,
|
|
but pragmatically follow the upstream)
|
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.17-1.2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.17-1.1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Fri Jul 07 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.17-1
|
|
- Update for new upstream tarball: Pacemaker-1.1.17,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.17
|
|
|
|
* Thu Jun 22 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.17-0.1.rc4
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.17-rc4,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.17-rc4
|
|
- Add an imposed lower bound for glib2 BuildRequires
|
|
|
|
* Thu Jun 01 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.17-0.1.rc3
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.17-rc3,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.17-rc3
|
|
|
|
* Wed May 24 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.17-0.1.rc2
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.17-rc2,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.17-rc2
|
|
|
|
* Tue May 09 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.17-0.1.rc1
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.17-rc1,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.17-rc1
|
|
|
|
* Mon Feb 06 2017 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.16-2.a39ea6491.git
|
|
- Update for (slightly stabilized) snapshot beyond Pacemaker-1.1.16
|
|
(commit a39ea6491), including:
|
|
. prevent FTBFS with new GCC 7 (a7476dd96)
|
|
- Adapt spec file more akin to upstream version including:
|
|
. better pre-release vs. tags logic (4581d4366)
|
|
|
|
* Fri Dec 02 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.16-1
|
|
- Update for new upstream tarball: Pacemaker-1.1.16,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.16
|
|
- Adapt spec file more akin to upstream version including:
|
|
. clarify licensing, especially for -doc (f01f734)
|
|
. fix pacemaker-remote upgrade (779e0e3)
|
|
. require python >= 2.6 (31ef7f0)
|
|
. older libqb is sufficient (based on 30fe1ce)
|
|
. remove openssl-devel and libselinux-devel as BRs (2e05c17)
|
|
. make systemd BR pkgconfig-driven (6285924)
|
|
. defines instead of some globals + error suppression (625d427)
|
|
- Rectify -nagios-plugins-metadata declared license and install
|
|
also respective license text
|
|
|
|
* Thu Nov 03 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.15-3
|
|
- Apply fix for CVE-2016-7035 (improper IPC guarding)
|
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.15-2.1
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
* Thu Jul 07 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.15-2
|
|
- Stop building with -fstack-protector-all using the upstream patches
|
|
overhauling toolchain hardening (Fedora natively uses
|
|
-fstack-protector-strong so this effectively relaxed stack protection
|
|
is the only effect as hardened flags are already used by default:
|
|
https://fedoraproject.org/wiki/Changes/Harden_All_Packages)
|
|
|
|
* Wed Jun 22 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.15-1
|
|
- Update for new upstream tarball: Pacemaker-1.1.15,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.15
|
|
- Adapt spec file more akin to upstream version:
|
|
. move xml schema files + PCMK-MIB.txt (81ef956), logrotate configuration
|
|
file (ce576cf; drop it from -remote package as well), attrd_updater
|
|
(aff80ae), the normal resource agents (1fc7287), and common directories
|
|
under /var/lib/pacemaker (3492794) from main package under -cli
|
|
. simplify docdir build parameter passing and drop as of now
|
|
redundant chmod invocations (e91769e)
|
|
|
|
* Fri May 27 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.15-0.1.rc3
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.15-rc3,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.15-rc3
|
|
- Drop fence_pcmk (incl. man page) from the package (no use where no CMAN)
|
|
- Drop license macro emulation for cases when not supported natively
|
|
(several recent Fedora releases do not need that)
|
|
|
|
* Mon May 16 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.15-0.1.rc2
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.15-rc2,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.15-rc2
|
|
|
|
* Tue Apr 26 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.15-0.1.rc1
|
|
- Update for new upstream tarball for release candidate: Pacemaker-1.1.15-rc1,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.15-rc1
|
|
- Adapt spec file more akin to upstream version (also to reflect recent
|
|
changes like ability to built explicitly without Publican-based docs)
|
|
|
|
* Thu Mar 31 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.14-2.5a6cdd1.git
|
|
- Update for currently stabilized snapshot beyond Pacemaker-1.1.14
|
|
(commit 5a6cdd1), but restore old-style notifications to the state at
|
|
Pacemaker-1.1.14 point release (disabled)
|
|
- Definitely get rid of Corosync v1 (Flatiron) hypothetical support
|
|
- Remove some of the spec file cruft, not required for years
|
|
(BuildRoot, AutoReqProv, "clean" scriptlet, etc.) and adapt the file
|
|
per https://github.com/ClusterLabs/pacemaker/pull/965
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.14-1.1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Mon Jan 18 2016 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.14-1
|
|
- Update for new upstream tarball: Pacemaker-1.1.14,
|
|
for full details, see included ChangeLog file or
|
|
https://github.com/ClusterLabs/pacemaker/releases/tag/Pacemaker-1.1.14
|
|
- Disable Fedora crypto policies conformance patch for now (rhbz#1179335)
|
|
- Better align specfile with the upstream version (also fix issue with
|
|
crm_mon sysconfig file not being installed)
|
|
- Further specfile modifications:
|
|
- drop unused gcc-c++ and repeatedly mentioned pkgconfig packages
|
|
from BuildRequires
|
|
- refer to python_sitearch macro first, if defined
|
|
- tolerate license macro not being defined (e.g., for EPEL rebuilds)
|
|
- Prevent console mode not available in crm_mon due to curses library test
|
|
fragility of configure script in hardened build environment (rhbz#1297985)
|
|
|
|
* Tue Oct 20 2015 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.13-4
|
|
- Adapt to follow Fedora crypto policies (rhbz#1179335)
|
|
|
|
* Wed Oct 14 2015 Jan Pokorný <jpokorny+rpm-pacemaker@redhat.com> - 1.1.13-3
|
|
- Update to Pacemaker-1.1.13 post-release + patches (sync)
|
|
- Add nagios-plugins-metadata subpackage enabling support of selected
|
|
Nagios plugins as resources recognized by Pacemaker
|
|
- Several specfile improvements: drop irrelevant stuff, rehash the
|
|
included/excluded files + dependencies, add check scriptlet,
|
|
reflect current packaging practice, do minor cleanups
|
|
(mostly adopted from another spec)
|
|
|
|
* Thu Aug 20 2015 Andrew Beekhof <abeekhof@redhat.com> - 1.1.13-2
|
|
- Update for new upstream tarball: Pacemaker-1.1.13
|
|
- See included ChangeLog file or https://raw.github.com/ClusterLabs/pacemaker/master/ChangeLog for full details
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.12-2.1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Wed Nov 05 2014 Andrew Beekhof <abeekhof@redhat.com> - 1.1.12-2
|
|
- Address incorrect use of the dbus API for interacting with systemd
|
|
|
|
* Tue Oct 28 2014 Andrew Beekhof <abeekhof@redhat.com> - 1.1.12-1
|
|
- Update for new upstream tarball: Pacemaker-1.1.12+ (a9c8177)
|
|
- See included ChangeLog file or https://raw.github.com/ClusterLabs/pacemaker/master/ChangeLog for full details
|
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.11-1.2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Fri Jun 06 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.11-1.1
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Tue Feb 18 2014 Andrew Beekhof <abeekhof@redhat.com> - 1.1.11-1
|
|
- Update for new upstream tarball: Pacemaker-1.1.11 (9d39a6b)
|
|
- See included ChangeLog file or https://raw.github.com/ClusterLabs/pacemaker/master/ChangeLog for full details
|
|
|
|
* Thu Jun 20 2013 Andrew Beekhof <abeekhof@redhat.com> - 1.1.9-3
|
|
- Update to upstream 7d8acec
|
|
- See included ChangeLog file or https://raw.github.com/ClusterLabs/pacemaker/master/ChangeLog for full details
|
|
|
|
+ Feature: Turn off auto-respawning of systemd services when the cluster starts them
|
|
+ Fix: crmd: Ensure operations for cleaned up resources don't block recovery
|
|
+ Fix: logging: If SIGTRAP is sent before tracing is turned on, turn it on instead of crashing
|
|
|
|
* Mon Jun 17 2013 Andrew Beekhof <abeekhof@redhat.com> - 1.1.9-2
|
|
- Update for new upstream tarball: 781a388
|
|
- See included ChangeLog file or https://raw.github.com/ClusterLabs/pacemaker/master/ChangeLog for full details
|
|
|
|
* Wed May 12 2010 Andrew Beekhof <andrew@beekhof.net> - 1.1.2-1
|
|
- Update the tarball from the upstream 1.1.2 release
|
|
- See included ChangeLog file or https://raw.github.com/ClusterLabs/pacemaker/master/ChangeLog for full details
|
|
|
|
* Tue Jul 14 2009 Andrew Beekhof <andrew@beekhof.net> - 1.0.4-1
|
|
- Initial checkin
|