2015-05-15 13:18:05 +00:00
|
|
|
# vim: set noexpandtab ts=8 sw=8 :
|
2011-12-29 19:58:02 +00:00
|
|
|
%bcond_with ocf
|
2015-05-29 11:28:24 +00:00
|
|
|
%bcond_without cephfs_java
|
2015-05-29 11:33:13 +00:00
|
|
|
%bcond_with tests
|
2015-05-29 11:34:39 +00:00
|
|
|
%bcond_without tcmalloc
|
2015-05-29 11:35:19 +00:00
|
|
|
%bcond_without libs_compat
|
2015-10-02 10:15:08 +00:00
|
|
|
%bcond_with lowmem_builder
|
2015-10-03 08:43:51 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2015-05-15 13:18:05 +00:00
|
|
|
%bcond_without selinux
|
2015-10-03 08:43:51 +00:00
|
|
|
%endif
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%bcond_with selinux
|
|
|
|
%endif
|
2015-05-15 13:18:05 +00:00
|
|
|
|
2011-09-08 19:30:05 +00:00
|
|
|
|
2015-03-16 16:02:35 +00:00
|
|
|
%if (0%{?el5} || (0%{?rhel_version} >= 500 && 0%{?rhel_version} <= 600))
|
2011-03-21 15:43:47 +00:00
|
|
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
|
|
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
|
|
|
%endif
|
|
|
|
|
2015-05-15 13:18:05 +00:00
|
|
|
%if %{with selinux}
|
|
|
|
# get selinux policy version
|
|
|
|
%{!?_selinux_policy_version: %global _selinux_policy_version %(sed -e 's,.*selinux-policy-\\([^/]*\\)/.*,\\1,' /usr/share/selinux/devel/policyhelp 2>/dev/null || echo 0.0.0)}
|
|
|
|
|
|
|
|
%define relabel_files() \
|
|
|
|
restorecon -R /usr/bin/ceph-mon > /dev/null 2>&1; \
|
|
|
|
restorecon -R /usr/bin/ceph-osd > /dev/null 2>&1; \
|
|
|
|
restorecon -R /usr/bin/ceph-mds > /dev/null 2>&1; \
|
2015-08-10 15:07:32 +00:00
|
|
|
restorecon -R /usr/bin/radosgw > /dev/null 2>&1; \
|
2015-05-15 13:18:05 +00:00
|
|
|
restorecon -R /etc/rc\.d/init\.d/ceph > /dev/null 2>&1; \
|
2015-08-10 15:07:32 +00:00
|
|
|
restorecon -R /etc/rc\.d/init\.d/radosgw > /dev/null 2>&1; \
|
2015-05-15 13:18:05 +00:00
|
|
|
restorecon -R /var/run/ceph > /dev/null 2>&1; \
|
|
|
|
restorecon -R /var/lib/ceph > /dev/null 2>&1; \
|
2015-09-15 22:05:59 +00:00
|
|
|
restorecon -R /var/log/ceph > /dev/null 2>&1;
|
2015-05-15 13:18:05 +00:00
|
|
|
%endif
|
|
|
|
|
2015-06-25 20:37:52 +00:00
|
|
|
%{!?_udevrulesdir: %global _udevrulesdir /lib/udev/rules.d}
|
|
|
|
|
2015-05-13 12:57:48 +00:00
|
|
|
# Use systemd files on RHEL 7 and above and in SUSE/openSUSE.
|
2015-03-09 20:14:57 +00:00
|
|
|
# Note: We don't install unit files for the services yet. For now,
|
|
|
|
# the _with_systemd variable only implies that we'll install
|
|
|
|
# /etc/tmpfiles.d/ceph.conf in order to set up the socket directory in
|
|
|
|
# /var/run/ceph.
|
2015-09-29 21:28:00 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 7 || 0%{?suse_version} >= 1210
|
2015-07-02 09:26:55 +00:00
|
|
|
%global _with_systemd 1
|
2015-11-26 14:22:21 +00:00
|
|
|
%{!?tmpfiles_create: %global tmpfiles_create systemd-tmpfiles --create}
|
2015-03-09 20:14:57 +00:00
|
|
|
%endif
|
|
|
|
|
2015-09-29 18:30:43 +00:00
|
|
|
# LTTng-UST enabled on Fedora, RHEL 6, and SLES 12
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} == 6 || 0%{?suse_version} == 1315
|
|
|
|
%global _with_lttng 1
|
|
|
|
%endif
|
2015-04-25 08:04:52 +00:00
|
|
|
|
|
|
|
#################################################################################
|
|
|
|
# common
|
|
|
|
#################################################################################
|
2011-12-15 16:51:04 +00:00
|
|
|
Name: ceph
|
|
|
|
Version: @VERSION@
|
2012-11-08 20:43:24 +00:00
|
|
|
Release: @RPM_RELEASE@%{?dist}
|
2014-10-01 13:02:02 +00:00
|
|
|
Epoch: 1
|
2011-12-15 16:51:04 +00:00
|
|
|
Summary: User space components of the Ceph file system
|
2015-09-03 18:30:50 +00:00
|
|
|
License: LGPL-2.1 and CC-BY-SA-1.0 and GPL-2.0 and BSL-1.0 and GPL-2.0-with-autoconf-exception and BSD-3-Clause and MIT
|
2015-08-01 07:30:59 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
Group: System/Filesystems
|
|
|
|
%endif
|
2012-06-16 21:50:29 +00:00
|
|
|
URL: http://ceph.com/
|
|
|
|
Source0: http://ceph.com/download/%{name}-%{version}.tar.bz2
|
2015-05-15 19:39:39 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2014-07-31 22:13:50 +00:00
|
|
|
Patch0: init-ceph.in-fedora.patch
|
|
|
|
%endif
|
2015-06-25 16:55:39 +00:00
|
|
|
#################################################################################
|
|
|
|
# dependencies that apply across all distro families
|
|
|
|
#################################################################################
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: libcephfs1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: ceph-common = %{epoch}:%{version}-%{release}
|
2015-08-05 15:54:13 +00:00
|
|
|
%if 0%{with selinux}
|
|
|
|
Requires: ceph-selinux = %{epoch}:%{version}-%{release}
|
|
|
|
%endif
|
2015-01-07 09:26:49 +00:00
|
|
|
Requires: python-rados = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-rbd = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-cephfs = %{epoch}:%{version}-%{release}
|
2013-01-18 06:43:07 +00:00
|
|
|
Requires: python
|
2014-02-27 01:11:05 +00:00
|
|
|
Requires: python-requests
|
2015-06-26 11:13:33 +00:00
|
|
|
Requires: grep
|
2014-07-03 23:05:00 +00:00
|
|
|
Requires: xfsprogs
|
2015-06-25 14:55:10 +00:00
|
|
|
Requires: logrotate
|
2013-02-28 13:16:26 +00:00
|
|
|
Requires: parted
|
|
|
|
Requires: util-linux
|
2013-04-17 04:14:18 +00:00
|
|
|
Requires: hdparm
|
2015-01-08 02:30:03 +00:00
|
|
|
Requires: cryptsetup
|
2015-06-25 14:00:24 +00:00
|
|
|
Requires: findutils
|
|
|
|
Requires: which
|
2011-12-15 16:51:04 +00:00
|
|
|
Requires(post): binutils
|
2015-06-08 15:48:55 +00:00
|
|
|
%if 0%{with cephfs_java}
|
2015-09-28 19:59:20 +00:00
|
|
|
BuildRequires: java-devel
|
|
|
|
BuildRequires: sharutils
|
2015-06-08 15:48:55 +00:00
|
|
|
%endif
|
2015-05-15 13:18:05 +00:00
|
|
|
%if 0%{with selinux}
|
|
|
|
BuildRequires: checkpolicy
|
|
|
|
BuildRequires: selinux-policy-devel
|
|
|
|
BuildRequires: /usr/share/selinux/devel/policyhelp
|
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
BuildRequires: gcc-c++
|
|
|
|
BuildRequires: boost-devel
|
2015-09-03 19:01:53 +00:00
|
|
|
BuildRequires: cmake
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: cryptsetup
|
2015-09-28 19:59:20 +00:00
|
|
|
BuildRequires: fuse-devel
|
2015-12-02 13:58:42 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
BuildRequires: python-Cython
|
|
|
|
%else
|
2015-12-01 14:20:01 +00:00
|
|
|
BuildRequires: Cython
|
2015-12-02 13:58:42 +00:00
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
BuildRequires: gdbm
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: hdparm
|
2015-07-15 10:54:20 +00:00
|
|
|
BuildRequires: leveldb-devel > 1.2
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: libaio-devel
|
|
|
|
BuildRequires: libcurl-devel
|
|
|
|
BuildRequires: libxml2-devel
|
|
|
|
BuildRequires: libblkid-devel >= 2.17
|
|
|
|
BuildRequires: libudev-devel
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: libtool
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: parted
|
2015-07-15 10:54:20 +00:00
|
|
|
BuildRequires: perl
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: pkgconfig
|
|
|
|
BuildRequires: python
|
2016-01-12 19:12:28 +00:00
|
|
|
BuildRequires: python-devel
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: python-nose
|
|
|
|
BuildRequires: python-requests
|
|
|
|
BuildRequires: python-virtualenv
|
2015-07-09 11:28:22 +00:00
|
|
|
BuildRequires: snappy-devel
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: util-linux
|
2016-01-08 17:21:58 +00:00
|
|
|
BuildRequires: valgrind-devel
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: xfsprogs
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: xfsprogs-devel
|
2014-11-30 12:14:47 +00:00
|
|
|
BuildRequires: xmlstarlet
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: yasm
|
2011-12-15 16:51:04 +00:00
|
|
|
|
|
|
|
#################################################################################
|
2015-06-25 16:55:39 +00:00
|
|
|
# distro-conditional dependencies
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
2015-07-09 11:42:50 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-09-29 21:28:00 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-10-06 10:25:52 +00:00
|
|
|
BuildRequires: pkgconfig(systemd)
|
2015-09-29 21:28:00 +00:00
|
|
|
BuildRequires: systemd-rpm-macros
|
2015-11-23 08:50:09 +00:00
|
|
|
BuildRequires: systemd
|
2015-09-29 21:28:00 +00:00
|
|
|
%{?systemd_requires}
|
|
|
|
%endif
|
2015-10-03 07:05:03 +00:00
|
|
|
PreReq: %fillup_prereq
|
2015-06-15 10:58:00 +00:00
|
|
|
Requires: python-Flask
|
2015-05-20 12:39:54 +00:00
|
|
|
BuildRequires: net-tools
|
|
|
|
BuildRequires: libbz2-devel
|
2013-03-01 10:51:26 +00:00
|
|
|
%if 0%{?suse_version} > 1210
|
2014-07-03 23:05:00 +00:00
|
|
|
Requires: gptfdisk
|
2015-05-29 11:34:39 +00:00
|
|
|
%if 0%{with tcmalloc}
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: gperftools-devel
|
2015-05-29 11:34:39 +00:00
|
|
|
%endif
|
2015-06-06 08:20:02 +00:00
|
|
|
%else
|
2014-07-03 23:05:00 +00:00
|
|
|
Requires: scsirastools
|
|
|
|
BuildRequires: google-perftools-devel
|
2015-06-06 08:20:02 +00:00
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
BuildRequires: mozilla-nss-devel
|
|
|
|
BuildRequires: keyutils-devel
|
|
|
|
BuildRequires: libatomic-ops-devel
|
2011-10-07 18:10:46 +00:00
|
|
|
%else
|
2015-09-29 21:28:00 +00:00
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
Requires: systemd
|
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
BuildRequires: nss-devel
|
|
|
|
BuildRequires: keyutils-libs-devel
|
|
|
|
BuildRequires: libatomic_ops-devel
|
2013-03-01 18:38:49 +00:00
|
|
|
Requires: gdisk
|
2011-12-15 16:51:04 +00:00
|
|
|
Requires(post): chkconfig
|
2015-05-20 12:39:54 +00:00
|
|
|
Requires(preun): chkconfig
|
|
|
|
Requires(preun): initscripts
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: gperftools-devel
|
2015-06-15 10:58:00 +00:00
|
|
|
Requires: python-flask
|
2011-09-08 19:30:05 +00:00
|
|
|
%endif
|
2015-09-29 08:42:39 +00:00
|
|
|
# boost
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
BuildRequires: boost-random
|
|
|
|
%endif
|
2015-09-28 19:59:20 +00:00
|
|
|
# python-argparse for distros with Python 2.6 or lower
|
|
|
|
%if (0%{?rhel} && 0%{?rhel} <= 6) || (0%{?suse_version} && 0%{?suse_version} <= 1110)
|
|
|
|
BuildRequires: python-argparse
|
|
|
|
%endif
|
2015-07-15 10:54:20 +00:00
|
|
|
# lttng and babeltrace for rbd-replay-prep
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?_with_lttng}
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2015-07-15 10:54:20 +00:00
|
|
|
BuildRequires: lttng-ust-devel
|
|
|
|
BuildRequires: libbabeltrace-devel
|
|
|
|
%endif
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-07-15 10:54:20 +00:00
|
|
|
BuildRequires: lttng-ust-devel
|
|
|
|
BuildRequires: babeltrace-devel
|
|
|
|
%endif
|
2015-09-29 18:30:43 +00:00
|
|
|
%endif
|
2015-09-28 19:59:20 +00:00
|
|
|
# expat and fastcgi for RGW
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
BuildRequires: libexpat-devel
|
|
|
|
BuildRequires: FastCGI-devel
|
|
|
|
%endif
|
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
|
|
|
BuildRequires: expat-devel
|
|
|
|
BuildRequires: fcgi-devel
|
|
|
|
%endif
|
2015-09-29 20:49:18 +00:00
|
|
|
# python-sphinx
|
|
|
|
%if 0%{?rhel} > 0 && 0%{?rhel} < 7
|
|
|
|
BuildRequires: python-sphinx10
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?suse_version} || 0%{?rhel} >= 7
|
|
|
|
BuildRequires: python-sphinx
|
|
|
|
%endif
|
|
|
|
|
2008-07-11 00:24:26 +00:00
|
|
|
%description
|
2015-09-29 20:49:18 +00:00
|
|
|
Ceph is a massively scalable, open-source, distributed storage system that runs
|
|
|
|
on commodity hardware and delivers object, block and file system storage.
|
2014-04-08 21:18:44 +00:00
|
|
|
|
2008-07-11 00:24:26 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
|
|
|
# packages
|
|
|
|
#################################################################################
|
2014-07-03 23:04:10 +00:00
|
|
|
%package -n ceph-common
|
|
|
|
Summary: Ceph Common
|
|
|
|
Group: System Environment/Base
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
2015-01-07 09:26:49 +00:00
|
|
|
Requires: python-rados = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-rbd = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-cephfs = %{epoch}:%{version}-%{release}
|
2014-07-03 23:04:10 +00:00
|
|
|
Requires: python-requests
|
2015-10-02 21:23:17 +00:00
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
%{?systemd_requires}
|
|
|
|
%endif
|
2015-10-02 21:21:02 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
Requires(pre): pwdutils
|
|
|
|
%endif
|
2015-06-16 16:27:20 +00:00
|
|
|
# python-argparse is only needed in distros with Python 2.6 or lower
|
|
|
|
%if (0%{?rhel} && 0%{?rhel} <= 6) || (0%{?suse_version} && 0%{?suse_version} <= 1110)
|
|
|
|
Requires: python-argparse
|
|
|
|
%endif
|
2014-07-03 23:04:10 +00:00
|
|
|
%description -n ceph-common
|
2015-01-22 23:40:53 +00:00
|
|
|
Common utilities to mount and interact with a ceph storage cluster.
|
2014-07-03 23:04:10 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
%package fuse
|
|
|
|
Summary: Ceph fuse-based client
|
|
|
|
Group: System Environment/Base
|
2012-11-07 20:41:10 +00:00
|
|
|
Requires: %{name}
|
2011-12-15 16:51:04 +00:00
|
|
|
%description fuse
|
2010-04-30 20:51:44 +00:00
|
|
|
FUSE based client for Ceph distributed network file system
|
2010-04-30 20:39:49 +00:00
|
|
|
|
2013-02-01 04:35:26 +00:00
|
|
|
%package -n rbd-fuse
|
|
|
|
Summary: Ceph fuse-based client
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: %{name}
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
2013-02-01 05:51:44 +00:00
|
|
|
%description -n rbd-fuse
|
2013-02-01 04:35:26 +00:00
|
|
|
FUSE based client to map Ceph rbd images to files
|
|
|
|
|
2015-11-13 09:31:00 +00:00
|
|
|
%package -n rbd-nbd
|
|
|
|
Summary: Ceph RBD client base on NBD
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: %{name}
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
%description -n rbd-nbd
|
|
|
|
NBD based client to map Ceph rbd images to local device
|
|
|
|
|
2010-07-09 09:13:04 +00:00
|
|
|
%package radosgw
|
2011-12-15 16:51:04 +00:00
|
|
|
Summary: Rados REST gateway
|
|
|
|
Group: Development/Libraries
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: ceph-common = %{epoch}:%{version}-%{release}
|
2015-09-04 07:30:29 +00:00
|
|
|
%if 0%{with selinux}
|
|
|
|
Requires: ceph-selinux = %{epoch}:%{version}-%{release}
|
|
|
|
%endif
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
2015-05-20 12:39:54 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
2015-06-23 19:41:53 +00:00
|
|
|
Requires: mailcap
|
2011-10-09 03:58:40 +00:00
|
|
|
%endif
|
2010-07-09 09:13:04 +00:00
|
|
|
%description radosgw
|
2015-01-22 23:40:53 +00:00
|
|
|
This package is an S3 HTTP REST gateway for the RADOS object store. It
|
|
|
|
is implemented as a FastCGI module using libfcgi, and can be used in
|
2010-07-09 09:13:04 +00:00
|
|
|
conjunction with any FastCGI capable web server.
|
|
|
|
|
2011-12-29 19:58:02 +00:00
|
|
|
%if %{with ocf}
|
|
|
|
%package resource-agents
|
|
|
|
Summary: OCF-compliant resource agents for Ceph daemons
|
|
|
|
Group: System Environment/Base
|
2012-07-02 20:54:48 +00:00
|
|
|
License: LGPL-2.0
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: %{name} = %{epoch}:%{version}
|
2011-12-29 19:58:02 +00:00
|
|
|
Requires: resource-agents
|
|
|
|
%description resource-agents
|
|
|
|
Resource agents for monitoring and managing Ceph daemons
|
|
|
|
under Open Cluster Framework (OCF) compliant resource
|
|
|
|
managers such as Pacemaker.
|
|
|
|
%endif
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
%package -n librados2
|
|
|
|
Summary: RADOS distributed object store client library
|
|
|
|
Group: System Environment/Libraries
|
2012-07-02 20:54:48 +00:00
|
|
|
License: LGPL-2.0
|
2015-05-15 19:39:39 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
2014-10-01 13:02:02 +00:00
|
|
|
Obsoletes: ceph-libs < %{epoch}:%{version}-%{release}
|
2013-07-23 19:56:09 +00:00
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
%description -n librados2
|
|
|
|
RADOS is a reliable, autonomic distributed object storage cluster
|
|
|
|
developed as part of the Ceph distributed storage system. This is a
|
|
|
|
shared library allowing applications to access the distributed object
|
|
|
|
store using a simple file-like interface.
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
%package -n librados2-devel
|
|
|
|
Summary: RADOS headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
|
|
|
%description -n librados2-devel
|
|
|
|
This package contains libraries and headers needed to develop programs
|
|
|
|
that use RADOS object store.
|
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
%package -n python-rados
|
|
|
|
Summary: Python libraries for the RADOS object store
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
2015-02-24 20:11:15 +00:00
|
|
|
Obsoletes: python-ceph < %{epoch}:%{version}-%{release}
|
2015-01-07 09:26:49 +00:00
|
|
|
%description -n python-rados
|
|
|
|
This package contains Python libraries for interacting with Cephs RADOS
|
|
|
|
object store.
|
|
|
|
|
2014-05-26 14:31:08 +00:00
|
|
|
%package -n libradosstriper1
|
|
|
|
Summary: RADOS striping interface
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
2015-07-09 10:05:24 +00:00
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
2014-05-26 14:31:08 +00:00
|
|
|
%description -n libradosstriper1
|
|
|
|
Striping interface built on top of the rados library, allowing
|
|
|
|
to stripe bigger objects onto several standard rados objects using
|
|
|
|
an interface very similar to the rados one.
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
%package -n libradosstriper1-devel
|
|
|
|
Summary: RADOS striping interface headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: libradosstriper1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
|
|
|
%description -n libradosstriper1-devel
|
|
|
|
This package contains libraries and headers needed to develop programs
|
|
|
|
that use RADOS striping interface.
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
%package -n librbd1
|
|
|
|
Summary: RADOS block device client library
|
|
|
|
Group: System Environment/Libraries
|
2012-07-02 20:54:48 +00:00
|
|
|
License: LGPL-2.0
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
2015-05-15 19:39:39 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
2014-10-01 13:02:02 +00:00
|
|
|
Obsoletes: ceph-libs < %{epoch}:%{version}-%{release}
|
2013-07-23 19:56:09 +00:00
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
%description -n librbd1
|
|
|
|
RBD is a block device striped across multiple distributed objects in
|
|
|
|
RADOS, a reliable, autonomic distributed object storage cluster
|
|
|
|
developed as part of the Ceph distributed storage system. This is a
|
|
|
|
shared library allowing applications to manage these block devices.
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
%package -n librbd1-devel
|
|
|
|
Summary: RADOS block device headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
|
|
|
%description -n librbd1-devel
|
|
|
|
This package contains libraries and headers needed to develop programs
|
|
|
|
that use RADOS block device.
|
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
%package -n python-rbd
|
|
|
|
Summary: Python libraries for the RADOS block device
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-rados = %{epoch}:%{version}-%{release}
|
2015-02-24 20:11:15 +00:00
|
|
|
Obsoletes: python-ceph < %{epoch}:%{version}-%{release}
|
2015-01-07 09:26:49 +00:00
|
|
|
%description -n python-rbd
|
|
|
|
This package contains Python libraries for interacting with Cephs RADOS
|
|
|
|
block device.
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
%package -n libcephfs1
|
|
|
|
Summary: Ceph distributed file system client library
|
|
|
|
Group: System Environment/Libraries
|
2012-07-02 20:54:48 +00:00
|
|
|
License: LGPL-2.0
|
2015-05-15 19:39:39 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
2014-10-01 19:33:38 +00:00
|
|
|
Obsoletes: ceph-libs < %{epoch}:%{version}-%{release}
|
2014-08-09 01:01:30 +00:00
|
|
|
Obsoletes: ceph-libcephfs
|
2013-07-23 19:56:09 +00:00
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
%description -n libcephfs1
|
|
|
|
Ceph is a distributed network file system designed to provide excellent
|
|
|
|
performance, reliability, and scalability. This is a shared library
|
|
|
|
allowing applications to access a Ceph distributed file system via a
|
|
|
|
POSIX-like interface.
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
%package -n libcephfs1-devel
|
|
|
|
Summary: Ceph distributed file system headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: libcephfs1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
|
|
|
%description -n libcephfs1-devel
|
|
|
|
This package contains libraries and headers needed to develop programs
|
|
|
|
that use Cephs distributed file system.
|
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
%package -n python-cephfs
|
|
|
|
Summary: Python libraries for Ceph distributed file system
|
2011-12-15 16:51:04 +00:00
|
|
|
Group: System Environment/Libraries
|
2012-07-02 20:54:48 +00:00
|
|
|
License: LGPL-2.0
|
2015-01-07 09:26:49 +00:00
|
|
|
Requires: libcephfs1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-rados = %{epoch}:%{version}-%{release}
|
2015-02-24 20:11:15 +00:00
|
|
|
Obsoletes: python-ceph < %{epoch}:%{version}-%{release}
|
2015-01-07 09:26:49 +00:00
|
|
|
%description -n python-cephfs
|
|
|
|
This package contains Python libraries for interacting with Cephs distributed
|
|
|
|
file system.
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2012-11-02 22:56:34 +00:00
|
|
|
%package -n ceph-test
|
|
|
|
Summary: Ceph benchmarks and test tools
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
2015-03-04 22:01:34 +00:00
|
|
|
Requires: ceph-common
|
2015-05-31 13:13:52 +00:00
|
|
|
Requires: xmlstarlet
|
2012-11-02 22:56:34 +00:00
|
|
|
%description -n ceph-test
|
|
|
|
This package contains Ceph benchmarks and test tools.
|
|
|
|
|
2015-05-29 11:28:24 +00:00
|
|
|
%if 0%{with cephfs_java}
|
|
|
|
|
2013-01-04 17:51:29 +00:00
|
|
|
%package -n libcephfs_jni1
|
2015-06-01 13:57:03 +00:00
|
|
|
Summary: Java Native Interface library for CephFS Java bindings
|
2012-12-19 03:40:32 +00:00
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: java
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: libcephfs1 = %{epoch}:%{version}-%{release}
|
2013-01-04 17:51:29 +00:00
|
|
|
%description -n libcephfs_jni1
|
2012-12-19 03:40:32 +00:00
|
|
|
This package contains the Java Native Interface library for CephFS Java
|
|
|
|
bindings.
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
%package -n libcephfs_jni1-devel
|
2015-06-01 13:57:03 +00:00
|
|
|
Summary: Development files for CephFS Java Native Interface library
|
2015-01-07 09:00:21 +00:00
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: java
|
|
|
|
Requires: libcephfs_jni1 = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
|
|
|
%description -n libcephfs_jni1-devel
|
|
|
|
This package contains the development files for CephFS Java Native Interface
|
|
|
|
library.
|
|
|
|
|
2013-01-04 17:51:28 +00:00
|
|
|
%package -n cephfs-java
|
2015-06-01 13:57:03 +00:00
|
|
|
Summary: Java libraries for the Ceph File System
|
2012-12-19 03:40:32 +00:00
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: java
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: libcephfs_jni1 = %{epoch}:%{version}-%{release}
|
2015-02-03 15:14:23 +00:00
|
|
|
%if 0%{?el6}
|
2014-07-03 23:05:00 +00:00
|
|
|
Requires: junit4
|
|
|
|
BuildRequires: junit4
|
2015-02-03 15:14:23 +00:00
|
|
|
%else
|
|
|
|
Requires: junit
|
|
|
|
BuildRequires: junit
|
|
|
|
%endif
|
2013-01-04 17:51:28 +00:00
|
|
|
%description -n cephfs-java
|
2012-12-19 03:40:32 +00:00
|
|
|
This package contains the Java libraries for the Ceph File System.
|
2012-11-09 21:28:13 +00:00
|
|
|
|
2015-05-29 11:28:24 +00:00
|
|
|
%endif
|
|
|
|
|
2015-05-15 13:18:05 +00:00
|
|
|
%if 0%{with selinux}
|
|
|
|
|
|
|
|
%package selinux
|
|
|
|
Summary: SELinux support for Ceph MON, OSD and MDS
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: %{name}
|
|
|
|
Requires: policycoreutils, libselinux-utils
|
2015-08-19 09:25:52 +00:00
|
|
|
Requires(post): selinux-policy-base >= %{_selinux_policy_version}, policycoreutils, gawk
|
2015-05-15 13:18:05 +00:00
|
|
|
Requires(postun): policycoreutils
|
|
|
|
%description selinux
|
|
|
|
This package contains SELinux support for Ceph MON, OSD and MDS. The package
|
|
|
|
also performs file-system relabelling which can take a long time on heavily
|
|
|
|
populated file-systems.
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
2015-05-29 11:35:19 +00:00
|
|
|
%if 0%{with libs_compat}
|
|
|
|
|
2014-07-31 21:49:56 +00:00
|
|
|
%package libs-compat
|
2015-06-01 13:57:03 +00:00
|
|
|
Summary: Meta package to include ceph libraries
|
2014-07-31 21:49:56 +00:00
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
2014-08-12 21:09:43 +00:00
|
|
|
Obsoletes: ceph-libs
|
2014-10-01 13:02:02 +00:00
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: libcephfs1 = %{epoch}:%{version}-%{release}
|
2014-07-31 21:49:56 +00:00
|
|
|
Provides: ceph-libs
|
|
|
|
|
|
|
|
%description libs-compat
|
|
|
|
This is a meta package, that pulls in librados2, librbd1 and libcephfs1. It
|
|
|
|
is included for backwards compatibility with distributions that depend on the
|
|
|
|
former ceph-libs package, which is now split up into these three subpackages.
|
|
|
|
Packages still depending on ceph-libs should be fixed to depend on librados2,
|
|
|
|
librbd1 or libcephfs1 instead.
|
|
|
|
|
2015-05-29 11:35:19 +00:00
|
|
|
%endif
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
%package devel-compat
|
|
|
|
Summary: Compatibility package for Ceph headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Obsoletes: ceph-devel
|
|
|
|
Requires: %{name} = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: libradosstriper1-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librbd1-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: libcephfs1-devel = %{epoch}:%{version}-%{release}
|
2015-06-12 15:50:58 +00:00
|
|
|
%if 0%{with cephfs_java}
|
2015-01-07 09:00:21 +00:00
|
|
|
Requires: libcephfs_jni1-devel = %{epoch}:%{version}-%{release}
|
2015-06-12 15:50:58 +00:00
|
|
|
%endif
|
2015-01-07 09:00:21 +00:00
|
|
|
Provides: ceph-devel
|
|
|
|
%description devel-compat
|
|
|
|
This is a compatibility package to accommodate ceph-devel split into
|
|
|
|
librados2-devel, librbd1-devel and libcephfs1-devel. Packages still depending
|
|
|
|
on ceph-devel should be fixed to depend on librados2-devel, librbd1-devel,
|
|
|
|
libcephfs1-devel or libradosstriper1-devel instead.
|
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
%package -n python-ceph-compat
|
|
|
|
Summary: Compatibility package for Cephs python libraries
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Obsoletes: python-ceph
|
|
|
|
Requires: python-rados = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-rbd = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-cephfs = %{epoch}:%{version}-%{release}
|
|
|
|
Provides: python-ceph
|
|
|
|
%description -n python-ceph-compat
|
|
|
|
This is a compatibility package to accommodate python-ceph split into
|
|
|
|
python-rados, python-rbd and python-cephfs. Packages still depending on
|
|
|
|
python-ceph should be fixed to depend on python-rados, python-rbd or
|
|
|
|
python-cephfs instead.
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
|
|
|
# common
|
|
|
|
#################################################################################
|
2008-07-11 00:24:26 +00:00
|
|
|
%prep
|
2010-04-30 20:39:49 +00:00
|
|
|
%setup -q
|
2015-05-15 19:39:39 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2014-07-31 22:13:50 +00:00
|
|
|
%patch0 -p1 -b .init
|
|
|
|
%endif
|
2008-07-11 00:24:26 +00:00
|
|
|
|
|
|
|
%build
|
2015-06-12 15:50:58 +00:00
|
|
|
%if 0%{with cephfs_java}
|
2012-12-19 03:40:32 +00:00
|
|
|
# Find jni.h
|
2012-12-19 05:00:15 +00:00
|
|
|
for i in /usr/{lib64,lib}/jvm/java/include{,/linux}; do
|
|
|
|
[ -d $i ] && java_inc="$java_inc -I$i"
|
2012-12-19 03:40:32 +00:00
|
|
|
done
|
2015-06-12 15:50:58 +00:00
|
|
|
%endif
|
2012-12-19 03:40:32 +00:00
|
|
|
|
2008-07-11 00:24:26 +00:00
|
|
|
./autogen.sh
|
2010-12-09 19:46:28 +00:00
|
|
|
|
2015-10-02 10:15:08 +00:00
|
|
|
%if %{with lowmem_builder}
|
|
|
|
RPM_OPT_FLAGS="$RPM_OPT_FLAGS --param ggc-min-expand=20 --param ggc-min-heapsize=32768"
|
|
|
|
%endif
|
2012-03-22 19:23:02 +00:00
|
|
|
export RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed -e 's/i386/i486/'`
|
|
|
|
|
2012-12-19 03:40:32 +00:00
|
|
|
%{configure} CPPFLAGS="$java_inc" \
|
|
|
|
--prefix=/usr \
|
2011-12-15 16:51:04 +00:00
|
|
|
--localstatedir=/var \
|
|
|
|
--sysconfdir=/etc \
|
2015-07-27 19:11:10 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-05-26 17:23:58 +00:00
|
|
|
--with-systemdsystemunitdir=%_unitdir \
|
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
--docdir=%{_docdir}/ceph \
|
2015-06-16 20:38:02 +00:00
|
|
|
--with-man-pages \
|
2015-06-08 20:16:06 +00:00
|
|
|
--mandir="%_mandir" \
|
2012-09-28 19:27:14 +00:00
|
|
|
--with-nss \
|
|
|
|
--without-cryptopp \
|
2012-11-02 23:28:56 +00:00
|
|
|
--with-debug \
|
2015-05-29 11:28:24 +00:00
|
|
|
%if 0%{with cephfs_java}
|
2012-12-19 03:40:32 +00:00
|
|
|
--enable-cephfs-java \
|
2015-05-15 13:18:05 +00:00
|
|
|
%endif
|
|
|
|
%if 0%{with selinux}
|
|
|
|
--with-selinux \
|
2015-05-29 11:28:24 +00:00
|
|
|
%endif
|
2014-07-29 22:38:18 +00:00
|
|
|
--with-librocksdb-static=check \
|
2015-05-26 17:02:36 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
|
|
|
--with-systemd-libexec-dir=/usr/libexec/ceph \
|
2015-06-09 14:55:10 +00:00
|
|
|
--with-rgw-user=root \
|
|
|
|
--with-rgw-group=root \
|
2015-05-26 17:02:36 +00:00
|
|
|
%endif
|
2015-08-26 14:32:57 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-05-26 17:02:36 +00:00
|
|
|
--with-systemd-libexec-dir=/usr/lib/ceph/ \
|
2015-06-03 10:55:01 +00:00
|
|
|
--with-rgw-user=wwwrun \
|
|
|
|
--with-rgw-group=www \
|
2015-05-26 17:02:36 +00:00
|
|
|
%endif
|
2015-10-07 15:32:27 +00:00
|
|
|
--with-radosgw \
|
|
|
|
$CEPH_EXTRA_CONFIGURE_ARGS \
|
2011-12-29 19:58:02 +00:00
|
|
|
%{?_with_ocf} \
|
2015-05-29 11:34:39 +00:00
|
|
|
%{?_with_tcmalloc} \
|
2012-03-22 19:23:02 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS"
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2015-11-23 12:22:28 +00:00
|
|
|
%if %{with lowmem_builder}
|
|
|
|
%if 0%{?jobs} > 8
|
|
|
|
%define _smp_mflags -j8
|
|
|
|
%endif
|
|
|
|
%endif
|
2010-12-09 19:46:28 +00:00
|
|
|
|
2015-10-02 13:30:41 +00:00
|
|
|
make %{?_smp_mflags}
|
2008-07-11 00:24:26 +00:00
|
|
|
|
2015-05-29 11:33:13 +00:00
|
|
|
|
|
|
|
%if 0%{with tests}
|
|
|
|
%check
|
|
|
|
# run in-tree unittests
|
2015-10-02 13:30:41 +00:00
|
|
|
make %{?_smp_mflags} check-local
|
2015-05-29 11:33:13 +00:00
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-07-11 00:24:26 +00:00
|
|
|
%install
|
2011-12-15 16:51:04 +00:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
2010-04-30 20:39:49 +00:00
|
|
|
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';'
|
2015-10-30 17:33:36 +00:00
|
|
|
install -D src/etc-rbdmap $RPM_BUILD_ROOT%{_sysconfdir}/ceph/rbdmap
|
2015-10-03 07:05:03 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2015-09-04 02:21:38 +00:00
|
|
|
install -m 0644 -D etc/sysconfig/ceph $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/ceph
|
2015-10-03 07:05:03 +00:00
|
|
|
%endif
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
install -m 0644 -D etc/sysconfig/ceph $RPM_BUILD_ROOT%{_localstatedir}/adm/fillup-templates/sysconfig.%{name}
|
|
|
|
%endif
|
2015-03-25 18:16:03 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-10-02 21:23:17 +00:00
|
|
|
install -m 0644 -D systemd/ceph.tmpfiles.d $RPM_BUILD_ROOT%{_tmpfilesdir}/ceph-common.conf
|
2015-11-02 13:07:47 +00:00
|
|
|
install -m 0644 -D systemd/rbdmap.service $RPM_BUILD_ROOT%{_unitdir}/rbdmap.service
|
2015-07-27 19:11:10 +00:00
|
|
|
install -m 0644 -D systemd/ceph-osd@.service $RPM_BUILD_ROOT%{_unitdir}/ceph-osd@.service
|
|
|
|
install -m 0644 -D systemd/ceph-mon@.service $RPM_BUILD_ROOT%{_unitdir}/ceph-mon@.service
|
2015-07-29 19:10:36 +00:00
|
|
|
install -m 0644 -D systemd/ceph-create-keys@.service $RPM_BUILD_ROOT%{_unitdir}/ceph-create-keys@.service
|
2015-07-27 19:11:10 +00:00
|
|
|
install -m 0644 -D systemd/ceph-mds@.service $RPM_BUILD_ROOT%{_unitdir}/ceph-mds@.service
|
|
|
|
install -m 0644 -D systemd/ceph-radosgw@.service $RPM_BUILD_ROOT%{_unitdir}/ceph-radosgw@.service
|
|
|
|
install -m 0644 -D systemd/ceph.target $RPM_BUILD_ROOT%{_unitdir}/ceph.target
|
2015-10-26 07:13:19 +00:00
|
|
|
install -m 0644 -D systemd/ceph-osd.target $RPM_BUILD_ROOT%{_unitdir}/ceph-osd.target
|
|
|
|
install -m 0644 -D systemd/ceph-mon.target $RPM_BUILD_ROOT%{_unitdir}/ceph-mon.target
|
|
|
|
install -m 0644 -D systemd/ceph-mds.target $RPM_BUILD_ROOT%{_unitdir}/ceph-mds.target
|
|
|
|
install -m 0644 -D systemd/ceph-radosgw.target $RPM_BUILD_ROOT%{_unitdir}/ceph-radosgw.target
|
2015-08-31 22:04:51 +00:00
|
|
|
install -m 0644 -D systemd/ceph-disk@.service $RPM_BUILD_ROOT%{_unitdir}/ceph-disk@.service
|
2015-07-31 11:15:02 +00:00
|
|
|
install -m 0755 -D systemd/ceph $RPM_BUILD_ROOT%{_sbindir}/rcceph
|
2015-07-27 19:11:10 +00:00
|
|
|
%else
|
2015-11-02 13:07:47 +00:00
|
|
|
install -D src/init-rbdmap $RPM_BUILD_ROOT%{_initrddir}/rbdmap
|
2015-07-27 19:11:10 +00:00
|
|
|
install -D src/init-ceph $RPM_BUILD_ROOT%{_initrddir}/ceph
|
|
|
|
install -D src/init-radosgw $RPM_BUILD_ROOT%{_initrddir}/ceph-radosgw
|
2015-07-29 19:10:36 +00:00
|
|
|
ln -sf ../../etc/init.d/ceph %{buildroot}/%{_sbindir}/rcceph
|
|
|
|
ln -sf ../../etc/init.d/ceph-radosgw %{buildroot}/%{_sbindir}/rcceph-radosgw
|
2015-03-09 20:14:57 +00:00
|
|
|
%endif
|
2013-04-15 10:47:27 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sbindir}
|
2010-08-02 16:15:34 +00:00
|
|
|
install -m 0644 -D src/logrotate.conf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/ceph
|
2011-10-09 03:58:40 +00:00
|
|
|
chmod 0644 $RPM_BUILD_ROOT%{_docdir}/ceph/sample.ceph.conf
|
|
|
|
chmod 0644 $RPM_BUILD_ROOT%{_docdir}/ceph/sample.fetch_config
|
2008-07-11 00:24:26 +00:00
|
|
|
|
2015-04-29 03:12:38 +00:00
|
|
|
# firewall templates
|
|
|
|
%if 0%{?suse_version}
|
2015-04-30 00:55:38 +00:00
|
|
|
install -m 0644 -D etc/sysconfig/SuSEfirewall2.d/services/ceph-mon %{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ceph-mon
|
|
|
|
install -m 0644 -D etc/sysconfig/SuSEfirewall2.d/services/ceph-osd-mds %{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ceph-osd-mds
|
2015-04-29 03:12:38 +00:00
|
|
|
%endif
|
|
|
|
|
2013-01-29 06:49:45 +00:00
|
|
|
# udev rules
|
2015-06-25 20:37:52 +00:00
|
|
|
install -m 0644 -D udev/50-rbd.rules $RPM_BUILD_ROOT%{_udevrulesdir}/50-rbd.rules
|
|
|
|
install -m 0644 -D udev/60-ceph-partuuid-workaround.rules $RPM_BUILD_ROOT%{_udevrulesdir}/60-ceph-partuuid-workaround.rules
|
2013-06-14 04:22:53 +00:00
|
|
|
|
2014-10-11 16:20:36 +00:00
|
|
|
%if (0%{?rhel} && 0%{?rhel} < 7)
|
2013-04-11 16:42:13 +00:00
|
|
|
install -m 0644 -D udev/95-ceph-osd-alt.rules $RPM_BUILD_ROOT/lib/udev/rules.d/95-ceph-osd.rules
|
|
|
|
%else
|
2013-04-04 16:23:40 +00:00
|
|
|
install -m 0644 -D udev/95-ceph-osd.rules $RPM_BUILD_ROOT/lib/udev/rules.d/95-ceph-osd.rules
|
2013-04-11 16:42:13 +00:00
|
|
|
%endif
|
2013-01-29 06:49:45 +00:00
|
|
|
|
2015-07-09 19:38:46 +00:00
|
|
|
%if 0%{?rhel} >= 7 || 0%{?fedora} || 0%{?suse_version}
|
2014-07-03 23:10:55 +00:00
|
|
|
mv $RPM_BUILD_ROOT/lib/udev/rules.d/95-ceph-osd.rules $RPM_BUILD_ROOT/usr/lib/udev/rules.d/95-ceph-osd.rules
|
|
|
|
mv $RPM_BUILD_ROOT/sbin/mount.ceph $RPM_BUILD_ROOT/usr/sbin/mount.ceph
|
|
|
|
mv $RPM_BUILD_ROOT/sbin/mount.fuse.ceph $RPM_BUILD_ROOT/usr/sbin/mount.fuse.ceph
|
|
|
|
%endif
|
|
|
|
|
2013-02-26 07:51:25 +00:00
|
|
|
#set up placeholder directories
|
2013-04-04 16:21:31 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ceph
|
2015-09-18 15:00:30 +00:00
|
|
|
%if ! 0%{?_with_systemd}
|
2013-04-04 16:27:13 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/ceph
|
2015-07-09 10:44:19 +00:00
|
|
|
%endif
|
2013-04-04 16:21:31 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/ceph
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/tmp
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/mon
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/osd
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/mds
|
2015-05-08 00:13:53 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/radosgw
|
2013-04-04 16:21:31 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/bootstrap-osd
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/bootstrap-mds
|
2015-05-08 00:13:53 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/bootstrap-rgw
|
2013-03-28 23:12:33 +00:00
|
|
|
|
2008-07-11 00:24:26 +00:00
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
2015-05-18 10:07:03 +00:00
|
|
|
%pre
|
|
|
|
%if 0%{?_with_systemd}
|
2015-08-26 14:32:57 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-05-18 10:07:03 +00:00
|
|
|
# service_add_pre and friends don't work with parameterized systemd service
|
|
|
|
# instances, only with single services or targets, so we always pass
|
|
|
|
# ceph.target to these macros
|
|
|
|
%service_add_pre ceph.target
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2010-04-30 20:39:49 +00:00
|
|
|
%post
|
|
|
|
/sbin/ldconfig
|
2015-05-18 10:07:03 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-08-26 14:32:57 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-10-03 07:05:03 +00:00
|
|
|
%fillup_only
|
2015-05-18 10:07:03 +00:00
|
|
|
%service_add_post ceph.target
|
|
|
|
%endif
|
|
|
|
%else
|
|
|
|
/sbin/chkconfig --add ceph
|
|
|
|
%endif
|
2010-04-30 20:39:49 +00:00
|
|
|
|
|
|
|
%preun
|
2015-05-18 10:07:03 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-08-26 14:32:57 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-05-18 10:07:03 +00:00
|
|
|
%service_del_preun ceph.target
|
|
|
|
%endif
|
2015-09-08 08:09:35 +00:00
|
|
|
# Disable and stop on removal.
|
2015-08-13 13:36:02 +00:00
|
|
|
if [ $1 = 0 ] ; then
|
|
|
|
SERVICE_LIST=$(systemctl | grep -E '^ceph-mon@|^ceph-create-keys@|^ceph-osd@|^ceph-mds@|^ceph-disk-' | cut -d' ' -f1)
|
|
|
|
if [ -n "$SERVICE_LIST" ]; then
|
|
|
|
for SERVICE in $SERVICE_LIST; do
|
|
|
|
/usr/bin/systemctl --no-reload disable $SERVICE > /dev/null 2>&1 || :
|
|
|
|
/usr/bin/systemctl stop $SERVICE > /dev/null 2>&1 || :
|
|
|
|
done
|
|
|
|
fi
|
2015-05-18 10:07:03 +00:00
|
|
|
fi
|
|
|
|
%else
|
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
|
|
|
if [ $1 = 0 ] ; then
|
|
|
|
/sbin/service ceph stop >/dev/null 2>&1
|
|
|
|
/sbin/chkconfig --del ceph
|
|
|
|
fi
|
|
|
|
%endif
|
2011-10-09 03:58:40 +00:00
|
|
|
%endif
|
2010-04-30 20:39:49 +00:00
|
|
|
|
|
|
|
%postun
|
|
|
|
/sbin/ldconfig
|
2015-09-08 08:09:35 +00:00
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
if [ $1 = 1 ] ; then
|
|
|
|
# Restart on upgrade, but only if "CEPH_AUTO_RESTART_ON_UPGRADE" is set to
|
|
|
|
# "yes". In any case: if units are not running, do not touch them.
|
|
|
|
SYSCONF_CEPH=/etc/sysconfig/ceph
|
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
SERVICE_LIST=$(systemctl | grep -E '^ceph-mon@|^ceph-create-keys@|^ceph-osd@|^ceph-mds@|^ceph-disk-' | cut -d' ' -f1)
|
|
|
|
if [ -n "$SERVICE_LIST" ]; then
|
|
|
|
for SERVICE in $SERVICE_LIST; do
|
|
|
|
/usr/bin/systemctl try-restart $SERVICE > /dev/null 2>&1 || :
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
%endif
|
2014-07-03 23:04:10 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
|
|
|
# files
|
|
|
|
#################################################################################
|
2008-07-11 00:24:26 +00:00
|
|
|
%files
|
2010-04-30 20:39:49 +00:00
|
|
|
%defattr(-,root,root,-)
|
2011-10-09 03:58:40 +00:00
|
|
|
%docdir %{_docdir}
|
|
|
|
%dir %{_docdir}/ceph
|
|
|
|
%{_docdir}/ceph/sample.ceph.conf
|
|
|
|
%{_docdir}/ceph/sample.fetch_config
|
2010-10-25 22:03:32 +00:00
|
|
|
%{_bindir}/cephfs
|
2011-09-21 23:28:43 +00:00
|
|
|
%{_bindir}/ceph-clsinfo
|
Add 'ceph-rest-api'
ceph-rest-api is a Python WSGI module for accessing the Ceph cluster.
It supports most of the commands supported by the ceph CLI,
appropriately translated to HTTP GET/PUT requests. It is not a
truly RESTful interface.
Not supported at this moment: "tell", "pg <pgid>", and "daemon"
commands.
Configuration options are specified in ceph.conf, specified with
-c/--conf or obtained from $CEPH_CONF, /etc/ceph/ceph.conf,
~/.ceph/ceph.conf, or ./ceph.conf.
-n/--name specifies the client name, used for the cluster
authentication key and for the ceph.conf section name (default
is client.restapi).
restapi keyring = <keyring file>
restapi public addr = listenIP:port (default 0.0.0.0:5000)
restapi base url = <base path> (default /api/v0.1)
restapi log level = (error, warning, info, debug)
restapi log file = (default /var/log/ceph/<clientname>.log)
Primitive human-level command discovery is supported; GET from
BASEURL (say, http://localhost:5000/api/v0.1) will show an HTML
table of all commands and arguments, method supported, and help strings.
Signed-off-by: Dan Mick <dan.mick@inktank.com>
2013-07-11 00:39:47 +00:00
|
|
|
%{_bindir}/ceph-rest-api
|
2014-09-29 21:24:01 +00:00
|
|
|
%{python_sitelib}/ceph_rest_api.py*
|
2008-07-11 00:24:26 +00:00
|
|
|
%{_bindir}/crushtool
|
|
|
|
%{_bindir}/monmaptool
|
|
|
|
%{_bindir}/osdmaptool
|
2011-09-21 23:28:43 +00:00
|
|
|
%{_bindir}/ceph-run
|
|
|
|
%{_bindir}/ceph-mon
|
|
|
|
%{_bindir}/ceph-mds
|
2015-04-30 21:53:22 +00:00
|
|
|
%{_bindir}/ceph-objectstore-tool
|
2015-12-18 20:40:45 +00:00
|
|
|
%{_bindir}/ceph-bluefs-tool
|
2011-09-21 23:28:43 +00:00
|
|
|
%{_bindir}/ceph-osd
|
2015-05-02 15:19:11 +00:00
|
|
|
%{_bindir}/ceph-detect-init
|
2011-03-19 00:04:17 +00:00
|
|
|
%{_bindir}/librados-config
|
2014-03-31 19:35:56 +00:00
|
|
|
%{_bindir}/ceph-client-debug
|
2014-04-23 15:27:36 +00:00
|
|
|
%{_bindir}/cephfs-journal-tool
|
2015-01-02 17:48:25 +00:00
|
|
|
%{_bindir}/cephfs-table-tool
|
2015-05-14 15:05:48 +00:00
|
|
|
%{_bindir}/cephfs-data-scan
|
2011-09-23 21:55:20 +00:00
|
|
|
%{_bindir}/ceph-debugpack
|
2011-09-08 19:30:37 +00:00
|
|
|
%{_bindir}/ceph-coverage
|
2015-03-25 18:16:03 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-06-10 13:33:54 +00:00
|
|
|
%{_unitdir}/ceph-mds@.service
|
|
|
|
%{_unitdir}/ceph-mon@.service
|
2015-07-29 19:10:36 +00:00
|
|
|
%{_unitdir}/ceph-create-keys@.service
|
2015-06-10 13:33:54 +00:00
|
|
|
%{_unitdir}/ceph-osd@.service
|
2015-07-27 19:11:10 +00:00
|
|
|
%{_unitdir}/ceph-radosgw@.service
|
2015-08-31 22:04:51 +00:00
|
|
|
%{_unitdir}/ceph-disk@.service
|
2015-06-10 13:33:54 +00:00
|
|
|
%{_unitdir}/ceph.target
|
2015-10-26 07:13:19 +00:00
|
|
|
%{_unitdir}/ceph-osd.target
|
|
|
|
%{_unitdir}/ceph-mon.target
|
|
|
|
%{_unitdir}/ceph-mds.target
|
|
|
|
%{_unitdir}/ceph-radosgw.target
|
2015-07-29 19:10:36 +00:00
|
|
|
%else
|
|
|
|
%{_initrddir}/ceph
|
2015-03-09 20:14:57 +00:00
|
|
|
%endif
|
2013-04-04 16:18:30 +00:00
|
|
|
%{_sbindir}/ceph-disk
|
2013-04-11 16:42:13 +00:00
|
|
|
%{_sbindir}/ceph-disk-udev
|
2013-04-04 16:18:30 +00:00
|
|
|
%{_sbindir}/ceph-create-keys
|
|
|
|
%{_sbindir}/rcceph
|
2015-07-09 19:38:46 +00:00
|
|
|
%if 0%{?rhel} >= 7 || 0%{?fedora} || 0%{?suse_version}
|
2014-07-03 23:10:55 +00:00
|
|
|
%{_sbindir}/mount.ceph
|
|
|
|
%else
|
2010-04-30 20:39:49 +00:00
|
|
|
/sbin/mount.ceph
|
2014-07-03 23:10:55 +00:00
|
|
|
%endif
|
2014-02-12 17:46:50 +00:00
|
|
|
%dir %{_libdir}/ceph
|
|
|
|
%{_libdir}/ceph/ceph_common.sh
|
2014-07-20 02:08:43 +00:00
|
|
|
%{_libexecdir}/ceph/ceph-osd-prestart.sh
|
2013-04-04 16:18:30 +00:00
|
|
|
%dir %{_libdir}/rados-classes
|
2015-07-16 06:21:03 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_cephfs.so*
|
2013-04-04 16:18:30 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_rbd.so*
|
2013-10-15 00:02:23 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_hello.so*
|
2015-08-28 20:54:49 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_numops.so*
|
2013-04-04 16:18:30 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_rgw.so*
|
|
|
|
%{_libdir}/rados-classes/libcls_lock.so*
|
|
|
|
%{_libdir}/rados-classes/libcls_kvs.so*
|
|
|
|
%{_libdir}/rados-classes/libcls_refcount.so*
|
2013-07-10 16:12:05 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_log.so*
|
|
|
|
%{_libdir}/rados-classes/libcls_replica_log.so*
|
|
|
|
%{_libdir}/rados-classes/libcls_statelog.so*
|
2015-09-03 22:41:26 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_timeindex.so*
|
2014-02-21 20:40:20 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_user.so*
|
2013-07-10 16:12:05 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_version.so*
|
2015-11-06 01:43:49 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_journal.so*
|
2013-12-20 16:05:45 +00:00
|
|
|
%dir %{_libdir}/ceph/erasure-code
|
2014-09-09 14:50:31 +00:00
|
|
|
%{_libdir}/ceph/erasure-code/libec_*.so*
|
2015-11-10 15:47:18 +00:00
|
|
|
%dir %{_libdir}/ceph/compressor
|
|
|
|
%{_libdir}/ceph/compressor/libceph_*.so*
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?_with_lttng}
|
|
|
|
%{_libdir}/libos_tp.so*
|
|
|
|
%{_libdir}/libosd_tp.so*
|
|
|
|
%endif
|
2015-06-25 20:37:52 +00:00
|
|
|
%{_udevrulesdir}/60-ceph-partuuid-workaround.rules
|
|
|
|
%{_udevrulesdir}/95-ceph-osd.rules
|
2011-12-15 16:51:04 +00:00
|
|
|
%config %{_sysconfdir}/bash_completion.d/ceph
|
2010-07-09 09:12:16 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/ceph
|
2015-10-03 07:05:03 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2015-09-11 16:19:59 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/ceph
|
2015-10-03 07:05:03 +00:00
|
|
|
%endif
|
2015-04-29 03:12:38 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-10-03 07:05:03 +00:00
|
|
|
%{_localstatedir}/adm/fillup-templates/sysconfig.*
|
2015-04-29 03:12:38 +00:00
|
|
|
%config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ceph-mon
|
|
|
|
%config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ceph-osd-mds
|
|
|
|
%endif
|
2015-05-02 15:19:11 +00:00
|
|
|
%{python_sitelib}/ceph_detect_init*
|
2014-12-18 09:02:05 +00:00
|
|
|
%{_mandir}/man8/ceph-deploy.8*
|
2015-05-02 15:19:11 +00:00
|
|
|
%{_mandir}/man8/ceph-detect-init.8*
|
2014-12-02 20:58:10 +00:00
|
|
|
%{_mandir}/man8/ceph-disk.8*
|
2015-04-21 06:59:32 +00:00
|
|
|
%{_mandir}/man8/ceph-create-keys.8*
|
2011-09-21 23:28:43 +00:00
|
|
|
%{_mandir}/man8/ceph-mon.8*
|
|
|
|
%{_mandir}/man8/ceph-mds.8*
|
|
|
|
%{_mandir}/man8/ceph-osd.8*
|
|
|
|
%{_mandir}/man8/ceph-run.8*
|
2013-07-11 23:21:55 +00:00
|
|
|
%{_mandir}/man8/ceph-rest-api.8*
|
2010-04-30 20:39:49 +00:00
|
|
|
%{_mandir}/man8/crushtool.8*
|
|
|
|
%{_mandir}/man8/osdmaptool.8*
|
|
|
|
%{_mandir}/man8/monmaptool.8*
|
2010-12-02 22:14:50 +00:00
|
|
|
%{_mandir}/man8/cephfs.8*
|
2010-04-30 20:39:49 +00:00
|
|
|
%{_mandir}/man8/mount.ceph.8*
|
2011-09-21 23:28:43 +00:00
|
|
|
%{_mandir}/man8/ceph-debugpack.8*
|
2015-01-23 22:08:34 +00:00
|
|
|
%{_mandir}/man8/ceph-clsinfo.8*
|
|
|
|
%{_mandir}/man8/librados-config.8*
|
2013-04-04 16:18:30 +00:00
|
|
|
#set up placeholder directories
|
2015-09-11 15:24:18 +00:00
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/tmp
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/mon
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/osd
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/mds
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/bootstrap-osd
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/bootstrap-mds
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/bootstrap-rgw
|
2015-09-18 15:00:30 +00:00
|
|
|
%if ! 0%{?_with_systemd}
|
2015-09-11 15:26:59 +00:00
|
|
|
%attr(770,ceph,ceph) %dir %{_localstatedir}/run/ceph
|
2015-09-18 15:00:30 +00:00
|
|
|
%endif
|
2009-11-26 05:45:11 +00:00
|
|
|
|
2014-07-03 23:04:10 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n ceph-common
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/ceph
|
|
|
|
%{_bindir}/ceph-authtool
|
|
|
|
%{_bindir}/ceph-conf
|
|
|
|
%{_bindir}/ceph-dencoder
|
2015-02-25 22:27:32 +00:00
|
|
|
%{_bindir}/ceph-rbdnamer
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_bindir}/ceph-syn
|
|
|
|
%{_bindir}/ceph-crush-location
|
|
|
|
%{_bindir}/rados
|
|
|
|
%{_bindir}/rbd
|
2015-09-08 16:41:02 +00:00
|
|
|
%{_bindir}/rbd-replay
|
|
|
|
%{_bindir}/rbd-replay-many
|
2015-10-30 17:33:36 +00:00
|
|
|
%{_bindir}/rbdmap
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?_with_lttng}
|
2015-09-08 16:41:02 +00:00
|
|
|
%{_bindir}/rbd-replay-prep
|
|
|
|
%endif
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_bindir}/ceph-post-file
|
|
|
|
%{_bindir}/ceph-brag
|
2015-10-02 21:23:17 +00:00
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
%{_tmpfilesdir}/ceph-common.conf
|
|
|
|
%endif
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_mandir}/man8/ceph-authtool.8*
|
|
|
|
%{_mandir}/man8/ceph-conf.8*
|
|
|
|
%{_mandir}/man8/ceph-dencoder.8*
|
2015-02-25 22:27:32 +00:00
|
|
|
%{_mandir}/man8/ceph-rbdnamer.8*
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_mandir}/man8/ceph-syn.8*
|
|
|
|
%{_mandir}/man8/ceph-post-file.8*
|
|
|
|
%{_mandir}/man8/ceph.8*
|
|
|
|
%{_mandir}/man8/rados.8*
|
|
|
|
%{_mandir}/man8/rbd.8*
|
2015-09-08 16:41:02 +00:00
|
|
|
%{_mandir}/man8/rbd-replay.8*
|
|
|
|
%{_mandir}/man8/rbd-replay-many.8*
|
|
|
|
%{_mandir}/man8/rbd-replay-prep.8*
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_datadir}/ceph/known_hosts_drop.ceph.com
|
|
|
|
%{_datadir}/ceph/id_dsa_drop.ceph.com
|
|
|
|
%{_datadir}/ceph/id_dsa_drop.ceph.com.pub
|
|
|
|
%dir %{_sysconfdir}/ceph/
|
2015-06-10 10:11:50 +00:00
|
|
|
%dir %{_datarootdir}/ceph/
|
|
|
|
%dir %{_libexecdir}/ceph/
|
2014-07-03 23:04:10 +00:00
|
|
|
%config %{_sysconfdir}/bash_completion.d/rados
|
|
|
|
%config %{_sysconfdir}/bash_completion.d/rbd
|
|
|
|
%config(noreplace) %{_sysconfdir}/ceph/rbdmap
|
2015-11-02 13:07:47 +00:00
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
%{_unitdir}/rbdmap.service
|
|
|
|
%else
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_initrddir}/rbdmap
|
2015-11-02 13:07:47 +00:00
|
|
|
%endif
|
2015-01-07 09:26:49 +00:00
|
|
|
%{python_sitelib}/ceph_argparse.py*
|
2015-02-03 13:13:29 +00:00
|
|
|
%{python_sitelib}/ceph_daemon.py*
|
2015-06-25 20:37:52 +00:00
|
|
|
%{_udevrulesdir}/50-rbd.rules
|
2015-09-11 15:24:18 +00:00
|
|
|
%attr(3770,ceph,ceph) %dir %{_localstatedir}/log/ceph/
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/
|
2014-07-03 23:04:10 +00:00
|
|
|
|
2015-06-18 11:42:04 +00:00
|
|
|
%pre -n ceph-common
|
|
|
|
CEPH_GROUP_ID=""
|
|
|
|
CEPH_USER_ID=""
|
2015-09-03 14:28:19 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
2015-06-18 11:42:04 +00:00
|
|
|
CEPH_GROUP_ID="-g 167"
|
|
|
|
CEPH_USER_ID="-u 167"
|
|
|
|
%endif
|
2015-10-02 21:21:02 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
2015-06-18 11:42:04 +00:00
|
|
|
%{_sbindir}/groupadd ceph $CEPH_GROUP_ID -o -r 2>/dev/null || :
|
|
|
|
%{_sbindir}/useradd ceph $CEPH_USER_ID -o -r -g ceph -s /sbin/nologin -c "Ceph daemons" -d %{_localstatedir}/lib/ceph 2> /dev/null || :
|
2015-10-02 21:21:02 +00:00
|
|
|
%endif
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
getent group ceph >/dev/null || groupadd -r ceph
|
|
|
|
getent passwd ceph >/dev/null || useradd -r -g ceph -d %{_localstatedir}/lib/ceph -s /sbin/nologin -c "Ceph daemons" ceph
|
|
|
|
%endif
|
|
|
|
exit 0
|
2014-07-03 23:04:10 +00:00
|
|
|
|
2015-10-02 21:23:17 +00:00
|
|
|
%post -n ceph-common
|
|
|
|
%if 0%{?_with_systemd}
|
2015-11-26 14:22:21 +00:00
|
|
|
%tmpfiles_create %{_tmpfilesdir}/ceph-common.conf
|
2015-10-02 21:23:17 +00:00
|
|
|
%endif
|
2014-07-03 23:04:10 +00:00
|
|
|
|
|
|
|
%postun -n ceph-common
|
|
|
|
# Package removal cleanup
|
|
|
|
if [ "$1" -eq "0" ] ; then
|
|
|
|
rm -rf /var/log/ceph
|
|
|
|
rm -rf /etc/ceph
|
|
|
|
fi
|
2013-02-26 07:51:25 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
2009-11-26 05:45:11 +00:00
|
|
|
%files fuse
|
2010-04-30 20:39:49 +00:00
|
|
|
%defattr(-,root,root,-)
|
2011-09-21 23:28:43 +00:00
|
|
|
%{_bindir}/ceph-fuse
|
|
|
|
%{_mandir}/man8/ceph-fuse.8*
|
2015-07-09 19:38:46 +00:00
|
|
|
%if 0%{?rhel} >= 7 || 0%{?fedora} || 0%{?suse_version}
|
2014-07-03 23:10:55 +00:00
|
|
|
%{_sbindir}/mount.fuse.ceph
|
|
|
|
%else
|
2012-12-12 16:01:49 +00:00
|
|
|
/sbin/mount.fuse.ceph
|
2014-07-03 23:10:55 +00:00
|
|
|
%endif
|
2010-04-30 20:39:49 +00:00
|
|
|
|
2013-02-01 04:35:26 +00:00
|
|
|
#################################################################################
|
2013-02-01 05:51:44 +00:00
|
|
|
%files -n rbd-fuse
|
2013-02-01 04:35:26 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/rbd-fuse
|
|
|
|
%{_mandir}/man8/rbd-fuse.8*
|
|
|
|
|
2015-11-13 09:31:00 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n rbd-nbd
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/rbd-nbd
|
|
|
|
%{_mandir}/man8/rbd-nbd.8*
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
2010-07-09 09:13:04 +00:00
|
|
|
%files radosgw
|
2010-12-09 18:26:55 +00:00
|
|
|
%defattr(-,root,root,-)
|
2010-07-09 09:13:04 +00:00
|
|
|
%{_bindir}/radosgw
|
2011-10-03 18:25:44 +00:00
|
|
|
%{_bindir}/radosgw-admin
|
2015-09-03 22:41:26 +00:00
|
|
|
%{_bindir}/radosgw-object-expirer
|
2011-10-09 03:58:40 +00:00
|
|
|
%{_mandir}/man8/radosgw.8*
|
|
|
|
%{_mandir}/man8/radosgw-admin.8*
|
2014-07-03 23:11:24 +00:00
|
|
|
%config %{_sysconfdir}/bash_completion.d/radosgw-admin
|
2015-05-08 00:13:53 +00:00
|
|
|
%dir %{_localstatedir}/lib/ceph/radosgw
|
2015-06-03 10:55:01 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-07-29 19:10:36 +00:00
|
|
|
%else
|
|
|
|
%{_initrddir}/ceph-radosgw
|
2015-07-29 19:12:54 +00:00
|
|
|
%{_sbindir}/rcceph-radosgw
|
2015-06-03 10:55:01 +00:00
|
|
|
%endif
|
2010-07-09 09:13:04 +00:00
|
|
|
|
2011-10-17 15:51:47 +00:00
|
|
|
%post radosgw
|
2011-12-15 16:51:04 +00:00
|
|
|
/sbin/ldconfig
|
2015-08-26 14:32:57 +00:00
|
|
|
%if 0%{?suse_version}
|
2015-05-18 10:07:03 +00:00
|
|
|
# explicit systemctl daemon-reload (that's the only relevant bit of
|
|
|
|
# service_add_post; the rest is all sysvinit --> systemd migration which
|
|
|
|
# isn't applicable in this context (see above comment).
|
|
|
|
/usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
|
2011-10-17 15:51:47 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%preun radosgw
|
2015-05-18 10:07:03 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-09-08 08:09:35 +00:00
|
|
|
# Disable and stop on removal.
|
|
|
|
if [ $1 = 0 ] ; then
|
|
|
|
SERVICE_LIST=$(systemctl | grep -E '^ceph-radosgw@' | cut -d' ' -f1)
|
|
|
|
if [ -n "$SERVICE_LIST" ]; then
|
|
|
|
for SERVICE in $SERVICE_LIST; do
|
|
|
|
/usr/bin/systemctl --no-reload disable $SERVICE > /dev/null 2>&1 || :
|
|
|
|
/usr/bin/systemctl stop $SERVICE > /dev/null 2>&1 || :
|
|
|
|
done
|
|
|
|
fi
|
2015-05-18 10:07:03 +00:00
|
|
|
fi
|
2011-10-17 15:51:47 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun radosgw
|
2011-12-15 16:51:04 +00:00
|
|
|
/sbin/ldconfig
|
2015-05-18 10:07:03 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-09-08 08:09:35 +00:00
|
|
|
if [ $1 = 1 ] ; then
|
|
|
|
# Restart on upgrade, but only if "CEPH_AUTO_RESTART_ON_UPGRADE" is set to
|
|
|
|
# "yes". In any case: if units are not running, do not touch them.
|
|
|
|
SYSCONF_CEPH=/etc/sysconfig/ceph
|
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
SERVICE_LIST=$(systemctl | grep -E '^ceph-radosgw@' | cut -d' ' -f1)
|
|
|
|
if [ -n "$SERVICE_LIST" ]; then
|
|
|
|
for SERVICE in $SERVICE_LIST; do
|
|
|
|
/usr/bin/systemctl try-restart $SERVICE > /dev/null 2>&1 || :
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
fi
|
2015-05-18 10:07:03 +00:00
|
|
|
fi
|
2011-10-17 15:51:47 +00:00
|
|
|
%endif
|
2013-10-15 21:27:35 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
2011-12-29 19:58:02 +00:00
|
|
|
%if %{with ocf}
|
|
|
|
%files resource-agents
|
|
|
|
%defattr(0755,root,root,-)
|
2013-01-30 18:00:45 +00:00
|
|
|
%dir /usr/lib/ocf
|
|
|
|
%dir /usr/lib/ocf/resource.d
|
|
|
|
%dir /usr/lib/ocf/resource.d/ceph
|
2011-12-29 19:58:02 +00:00
|
|
|
/usr/lib/ocf/resource.d/%{name}/*
|
|
|
|
%endif
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n librados2
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/librados.so.*
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?_with_lttng}
|
|
|
|
%{_libdir}/librados_tp.so.*
|
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
|
|
|
|
%post -n librados2
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n librados2
|
|
|
|
/sbin/ldconfig
|
2014-05-26 14:31:08 +00:00
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n librados2-devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_includedir}/rados
|
|
|
|
%{_includedir}/rados/librados.h
|
|
|
|
%{_includedir}/rados/librados.hpp
|
|
|
|
%{_includedir}/rados/buffer.h
|
2015-12-06 14:24:17 +00:00
|
|
|
%{_includedir}/rados/buffer_fwd.h
|
2015-01-07 09:00:21 +00:00
|
|
|
%{_includedir}/rados/page.h
|
|
|
|
%{_includedir}/rados/crc32c.h
|
|
|
|
%{_includedir}/rados/rados_types.h
|
|
|
|
%{_includedir}/rados/rados_types.hpp
|
|
|
|
%{_includedir}/rados/memory.h
|
|
|
|
%{_libdir}/librados.so
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?_with_lttng}
|
|
|
|
%{_libdir}/librados_tp.so
|
|
|
|
%endif
|
2015-01-07 09:00:21 +00:00
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n python-rados
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python_sitelib}/rados.py*
|
|
|
|
|
2014-05-26 14:31:08 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n libradosstriper1
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/libradosstriper.so.*
|
|
|
|
|
|
|
|
%post -n libradosstriper1
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libradosstriper1
|
|
|
|
/sbin/ldconfig
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n libradosstriper1-devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_includedir}/radosstriper
|
|
|
|
%{_includedir}/radosstriper/libradosstriper.h
|
|
|
|
%{_includedir}/radosstriper/libradosstriper.hpp
|
|
|
|
%{_libdir}/libradosstriper.so
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n librbd1
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/librbd.so.*
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?_with_lttng}
|
|
|
|
%{_libdir}/librbd_tp.so.*
|
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
|
|
|
|
%post -n librbd1
|
|
|
|
/sbin/ldconfig
|
2014-07-17 14:06:37 +00:00
|
|
|
mkdir -p /usr/lib64/qemu/
|
2014-03-05 00:15:15 +00:00
|
|
|
ln -sf %{_libdir}/librbd.so.1 /usr/lib64/qemu/librbd.so.1
|
2011-12-15 16:51:04 +00:00
|
|
|
|
|
|
|
%postun -n librbd1
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n librbd1-devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_includedir}/rbd
|
|
|
|
%{_includedir}/rbd/librbd.h
|
|
|
|
%{_includedir}/rbd/librbd.hpp
|
|
|
|
%{_includedir}/rbd/features.h
|
|
|
|
%{_libdir}/librbd.so
|
2015-09-29 18:30:43 +00:00
|
|
|
%if 0%{?_with_lttng}
|
|
|
|
%{_libdir}/librbd_tp.so
|
|
|
|
%endif
|
2015-01-07 09:00:21 +00:00
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n python-rbd
|
|
|
|
%defattr(-,root,root,-)
|
2015-12-01 14:30:01 +00:00
|
|
|
%{python_sitearch}/rbd.so
|
|
|
|
%{python_sitearch}/rbd-*.egg-info
|
2015-01-07 09:26:49 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n libcephfs1
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/libcephfs.so.*
|
|
|
|
|
|
|
|
%post -n libcephfs1
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libcephfs1
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n libcephfs1-devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_includedir}/cephfs
|
|
|
|
%{_includedir}/cephfs/libcephfs.h
|
|
|
|
%{_libdir}/libcephfs.so
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
2015-01-07 09:26:49 +00:00
|
|
|
%files -n python-cephfs
|
2011-12-15 16:51:04 +00:00
|
|
|
%defattr(-,root,root,-)
|
2013-02-21 13:38:14 +00:00
|
|
|
%{python_sitelib}/cephfs.py*
|
2015-11-29 17:10:45 +00:00
|
|
|
%{python_sitelib}/ceph_volume_client.py*
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2012-11-02 22:56:34 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n ceph-test
|
|
|
|
%defattr(-,root,root,-)
|
2013-02-10 17:33:56 +00:00
|
|
|
%{_bindir}/ceph_bench_log
|
|
|
|
%{_bindir}/ceph_kvstorebench
|
|
|
|
%{_bindir}/ceph_multi_stress_watch
|
2014-02-03 13:00:41 +00:00
|
|
|
%{_bindir}/ceph_erasure_code
|
2013-12-19 11:12:41 +00:00
|
|
|
%{_bindir}/ceph_erasure_code_benchmark
|
2013-02-10 17:33:56 +00:00
|
|
|
%{_bindir}/ceph_omapbench
|
2015-08-10 17:40:43 +00:00
|
|
|
%{_bindir}/ceph_objectstore_bench
|
2015-03-13 22:08:35 +00:00
|
|
|
%{_bindir}/ceph_perf_objectstore
|
2015-05-27 04:51:50 +00:00
|
|
|
%{_bindir}/ceph_perf_local
|
2015-06-11 16:27:31 +00:00
|
|
|
%{_bindir}/ceph_perf_msgr_client
|
|
|
|
%{_bindir}/ceph_perf_msgr_server
|
2013-02-10 17:33:56 +00:00
|
|
|
%{_bindir}/ceph_psim
|
|
|
|
%{_bindir}/ceph_radosacl
|
|
|
|
%{_bindir}/ceph_rgw_jsonparser
|
|
|
|
%{_bindir}/ceph_rgw_multiparser
|
|
|
|
%{_bindir}/ceph_scratchtool
|
|
|
|
%{_bindir}/ceph_scratchtoolpp
|
|
|
|
%{_bindir}/ceph_smalliobench
|
|
|
|
%{_bindir}/ceph_smalliobenchdumb
|
|
|
|
%{_bindir}/ceph_smalliobenchfs
|
|
|
|
%{_bindir}/ceph_smalliobenchrbd
|
2014-02-21 22:05:51 +00:00
|
|
|
%{_bindir}/ceph_test_*
|
2013-02-10 17:33:56 +00:00
|
|
|
%{_bindir}/ceph_tpbench
|
|
|
|
%{_bindir}/ceph_xattr_bench
|
2013-05-06 13:09:32 +00:00
|
|
|
%{_bindir}/ceph-monstore-tool
|
|
|
|
%{_bindir}/ceph-osdomap-tool
|
2013-10-16 20:59:00 +00:00
|
|
|
%{_bindir}/ceph-kvstore-tool
|
2015-06-23 12:30:23 +00:00
|
|
|
%dir %{_libdir}/ceph
|
|
|
|
%{_libdir}/ceph/ceph-monstore-update-crush.sh
|
2012-11-02 22:56:34 +00:00
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
2015-05-29 11:28:24 +00:00
|
|
|
%if 0%{with cephfs_java}
|
2013-01-04 17:51:29 +00:00
|
|
|
%files -n libcephfs_jni1
|
2012-12-19 03:40:32 +00:00
|
|
|
%defattr(-,root,root,-)
|
2013-01-30 18:00:43 +00:00
|
|
|
%{_libdir}/libcephfs_jni.so.*
|
2012-12-19 03:40:32 +00:00
|
|
|
|
2015-06-01 12:58:31 +00:00
|
|
|
%post -n libcephfs_jni1
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -n libcephfs_jni1
|
|
|
|
/sbin/ldconfig
|
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n libcephfs_jni1-devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/libcephfs_jni.so
|
|
|
|
|
|
|
|
#################################################################################
|
2013-01-04 17:51:28 +00:00
|
|
|
%files -n cephfs-java
|
2012-12-19 03:40:32 +00:00
|
|
|
%defattr(-,root,root,-)
|
2013-01-04 17:51:27 +00:00
|
|
|
%{_javadir}/libcephfs.jar
|
|
|
|
%{_javadir}/libcephfs-test.jar
|
2015-05-29 11:28:24 +00:00
|
|
|
%endif
|
2012-12-19 03:40:32 +00:00
|
|
|
|
2015-05-15 13:18:05 +00:00
|
|
|
#################################################################################
|
|
|
|
%if 0%{with selinux}
|
|
|
|
%files selinux
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%attr(0600,root,root) %{_datadir}/selinux/packages/ceph.pp
|
|
|
|
%{_datadir}/selinux/devel/include/contrib/ceph.if
|
2015-10-01 18:27:40 +00:00
|
|
|
%{_mandir}/man8/ceph_selinux.8*
|
2015-05-15 13:18:05 +00:00
|
|
|
|
|
|
|
%post selinux
|
2015-10-02 07:56:01 +00:00
|
|
|
# Install the policy
|
|
|
|
OLD_POLVER=$(%{_sbindir}/semodule -l | grep -P '^ceph[\t ]' | awk '{print $2}')
|
|
|
|
%{_sbindir}/semodule -n -i %{_datadir}/selinux/packages/ceph.pp
|
|
|
|
NEW_POLVER=$(%{_sbindir}/semodule -l | grep -P '^ceph[\t ]' | awk '{print $2}')
|
|
|
|
|
|
|
|
# Load the policy if SELinux is enabled
|
|
|
|
if %{_sbindir}/selinuxenabled; then
|
|
|
|
%{_sbindir}/load_policy
|
|
|
|
else
|
|
|
|
# Do not relabel if selinux is not enabled
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$OLD_POLVER" == "$NEW_POLVER"; then
|
|
|
|
# Do not relabel if policy version did not change
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check whether the daemons are running
|
2015-08-17 10:48:17 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-08-26 11:53:38 +00:00
|
|
|
/usr/bin/systemctl status ceph.target > /dev/null 2>&1
|
2015-08-17 10:48:17 +00:00
|
|
|
%else
|
2015-08-26 11:53:38 +00:00
|
|
|
/sbin/service ceph status >/dev/null 2>&1
|
2015-08-17 10:48:17 +00:00
|
|
|
%endif
|
2015-08-26 11:53:38 +00:00
|
|
|
STATUS=$?
|
|
|
|
|
2015-10-02 07:56:01 +00:00
|
|
|
# Stop the daemons if they were running
|
2015-08-26 11:53:38 +00:00
|
|
|
if test $STATUS -eq 0; then
|
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
/usr/bin/systemctl stop ceph.target > /dev/null 2>&1
|
|
|
|
%else
|
|
|
|
/sbin/service ceph stop >/dev/null 2>&1
|
|
|
|
%endif
|
|
|
|
fi
|
2015-08-17 10:48:17 +00:00
|
|
|
|
2015-10-02 07:56:01 +00:00
|
|
|
# Now, relabel the files
|
|
|
|
%relabel_files
|
2015-08-17 10:48:17 +00:00
|
|
|
|
2015-10-02 07:56:01 +00:00
|
|
|
# Start the daemons iff they were running before
|
2015-08-26 11:53:38 +00:00
|
|
|
if test $STATUS -eq 0; then
|
2015-08-17 10:48:17 +00:00
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
/usr/bin/systemctl start ceph.target > /dev/null 2>&1 || :
|
|
|
|
%else
|
|
|
|
/sbin/service ceph start >/dev/null 2>&1 || :
|
|
|
|
%endif
|
2015-08-26 11:53:38 +00:00
|
|
|
fi
|
|
|
|
|
2015-05-15 13:18:05 +00:00
|
|
|
exit 0
|
|
|
|
|
|
|
|
%postun selinux
|
|
|
|
if [ $1 -eq 0 ]; then
|
2015-10-02 08:37:04 +00:00
|
|
|
# Remove the module
|
|
|
|
%{_sbindir}/semodule -n -r ceph
|
|
|
|
|
|
|
|
# Reload the policy if SELinux is enabled
|
|
|
|
if %{_sbindir}/selinuxenabled ; then
|
|
|
|
%{_sbindir}/load_policy
|
|
|
|
else
|
|
|
|
# Do not relabel if SELinux is not enabled
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check whether the daemons are running
|
2015-08-17 10:48:17 +00:00
|
|
|
%if 0%{?_with_systemd}
|
2015-08-26 11:53:38 +00:00
|
|
|
/usr/bin/systemctl status ceph.target > /dev/null 2>&1
|
2015-08-17 10:48:17 +00:00
|
|
|
%else
|
2015-08-26 11:53:38 +00:00
|
|
|
/sbin/service ceph status >/dev/null 2>&1
|
2015-08-17 10:48:17 +00:00
|
|
|
%endif
|
2015-08-26 11:53:38 +00:00
|
|
|
STATUS=$?
|
|
|
|
|
2015-10-02 08:37:04 +00:00
|
|
|
# Stop the daemons if they were running
|
2015-08-26 11:53:38 +00:00
|
|
|
if test $STATUS -eq 0; then
|
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
/usr/bin/systemctl stop ceph.target > /dev/null 2>&1
|
|
|
|
%else
|
|
|
|
/sbin/service ceph stop >/dev/null 2>&1
|
|
|
|
%endif
|
|
|
|
fi
|
|
|
|
|
2015-10-02 08:37:04 +00:00
|
|
|
# Now, relabel the files
|
|
|
|
%relabel_files
|
2015-08-26 11:53:38 +00:00
|
|
|
|
2015-10-02 08:37:04 +00:00
|
|
|
# Start the daemons if they were running before
|
2015-08-26 11:53:38 +00:00
|
|
|
if test $STATUS -eq 0; then
|
2015-08-17 10:48:17 +00:00
|
|
|
%if 0%{?_with_systemd}
|
|
|
|
/usr/bin/systemctl start ceph.target > /dev/null 2>&1 || :
|
|
|
|
%else
|
|
|
|
/sbin/service ceph start >/dev/null 2>&1 || :
|
|
|
|
%endif
|
2015-08-26 11:53:38 +00:00
|
|
|
fi
|
|
|
|
fi
|
2015-05-15 13:18:05 +00:00
|
|
|
exit 0
|
|
|
|
|
2015-08-26 11:53:38 +00:00
|
|
|
%endif # with selinux
|
2015-05-15 13:18:05 +00:00
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
2015-05-29 11:35:19 +00:00
|
|
|
%if 0%{with libs_compat}
|
2014-07-31 21:49:56 +00:00
|
|
|
%files libs-compat
|
2014-12-17 20:05:21 +00:00
|
|
|
# We need an empty %%files list for ceph-libs-compat, to tell rpmbuild to actually
|
2014-08-12 21:46:52 +00:00
|
|
|
# build this meta package.
|
2015-07-13 17:51:28 +00:00
|
|
|
%endif
|
2014-07-31 21:49:56 +00:00
|
|
|
|
2015-01-07 09:00:21 +00:00
|
|
|
#################################################################################
|
|
|
|
%files devel-compat
|
|
|
|
# We need an empty %%files list for ceph-devel-compat, to tell rpmbuild to
|
|
|
|
# actually build this meta package.
|
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
#################################################################################
|
|
|
|
%files -n python-ceph-compat
|
|
|
|
# We need an empty %%files list for python-ceph-compat, to tell rpmbuild to
|
|
|
|
# actually build this meta package.
|
|
|
|
|
2010-04-30 20:39:49 +00:00
|
|
|
%changelog
|