2015-05-15 13:18:05 +00:00
|
|
|
# vim: set noexpandtab ts=8 sw=8 :
|
2016-02-08 14:58:51 +00:00
|
|
|
#
|
|
|
|
# spec file for package ceph
|
|
|
|
#
|
|
|
|
# Copyright (C) 2004-2016 The Ceph Project Developers. See COPYING file
|
|
|
|
# at the top-level directory of this distribution and at
|
|
|
|
# https://github.com/ceph/ceph/blob/master/COPYING
|
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon.
|
|
|
|
#
|
2016-02-08 17:57:31 +00:00
|
|
|
# This file is under the GNU Lesser General Public License, version 2.1
|
|
|
|
#
|
2016-02-08 14:58:51 +00:00
|
|
|
# Please submit bugfixes or comments via http://tracker.ceph.com/
|
|
|
|
#
|
2011-12-29 19:58:02 +00:00
|
|
|
%bcond_with ocf
|
2015-05-29 11:28:24 +00:00
|
|
|
%bcond_without cephfs_java
|
2016-08-23 11:36:55 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%bcond_with ceph_test_package
|
|
|
|
%else
|
|
|
|
%bcond_without ceph_test_package
|
|
|
|
%endif
|
2016-08-23 11:31:05 +00:00
|
|
|
%bcond_with make_check
|
2016-04-12 13:33:45 +00:00
|
|
|
%bcond_with xio
|
2016-05-06 11:29:03 +00:00
|
|
|
%ifnarch s390 s390x
|
2015-05-29 11:34:39 +00:00
|
|
|
%bcond_without tcmalloc
|
2016-05-06 11:29:03 +00:00
|
|
|
%else
|
|
|
|
# no gperftools/tcmalloc on s390(x)
|
|
|
|
%bcond_with tcmalloc
|
|
|
|
%endif
|
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
|
|
|
|
2016-08-05 13:19:50 +00:00
|
|
|
# LTTng-UST enabled on Fedora, RHEL 6+, and SLE (not openSUSE)
|
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 6 || 0%{?suse_version}
|
|
|
|
%if ! 0%{?is_opensuse}
|
2016-03-01 05:51:09 +00:00
|
|
|
%bcond_without lttng
|
|
|
|
%endif
|
2016-08-05 13:19:50 +00:00
|
|
|
%endif
|
2011-09-08 19:30:05 +00:00
|
|
|
|
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)}
|
|
|
|
%endif
|
|
|
|
|
2015-06-25 20:37:52 +00:00
|
|
|
%{!?_udevrulesdir: %global _udevrulesdir /lib/udev/rules.d}
|
2015-11-26 14:22:21 +00:00
|
|
|
%{!?tmpfiles_create: %global tmpfiles_create systemd-tmpfiles --create}
|
2016-08-09 10:26:30 +00:00
|
|
|
%{!?python3_pkgversion: %global python3_pkgversion 3}
|
2015-03-09 20:14:57 +00:00
|
|
|
|
2016-02-15 19:10:59 +00:00
|
|
|
# unify libexec for all targets
|
|
|
|
%global _libexecdir %{_exec_prefix}/lib
|
|
|
|
|
|
|
|
|
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/
|
2016-07-22 15:19:40 +00:00
|
|
|
Source0: http://ceph.com/download/@TARBALL_BASENAME@.tar.bz2
|
2016-08-05 14:34:48 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%if 0%{?is_opensuse}
|
|
|
|
ExclusiveArch: x86_64 aarch64 ppc64 ppc64le
|
|
|
|
%else
|
|
|
|
ExclusiveArch: x86_64 aarch64
|
|
|
|
%endif
|
|
|
|
%endif
|
2015-06-25 16:55:39 +00:00
|
|
|
#################################################################################
|
|
|
|
# dependencies that apply across all distro families
|
|
|
|
#################################################################################
|
2016-02-11 17:59:15 +00:00
|
|
|
Requires: ceph-osd = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: ceph-mds = %{epoch}:%{version}-%{release}
|
2016-09-07 05:49:58 +00:00
|
|
|
Requires: ceph-mgr = %{epoch}:%{version}-%{release}
|
2016-02-11 17:59:15 +00:00
|
|
|
Requires: ceph-mon = %{epoch}:%{version}-%{release}
|
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: boost-devel
|
2016-09-07 05:49:58 +00:00
|
|
|
%if ! 0%{?suse_version}
|
2016-09-05 16:12:27 +00:00
|
|
|
BuildRequires: boost-python
|
2016-09-07 05:49:58 +00:00
|
|
|
%endif
|
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-10-11 08:37:47 +00:00
|
|
|
BuildRequires: gcc-c++
|
2011-12-15 16:51:04 +00:00
|
|
|
BuildRequires: gdbm
|
2016-07-20 08:22:37 +00:00
|
|
|
%if 0%{with tcmalloc}
|
|
|
|
BuildRequires: gperftools-devel
|
|
|
|
%endif
|
2016-05-04 20:01:47 +00:00
|
|
|
BuildRequires: jq
|
2015-07-15 10:54:20 +00:00
|
|
|
BuildRequires: leveldb-devel > 1.2
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: libaio-devel
|
2016-07-20 08:23:48 +00:00
|
|
|
BuildRequires: libatomic_ops-devel
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: libblkid-devel >= 2.17
|
2015-10-11 08:37:47 +00:00
|
|
|
BuildRequires: libcurl-devel
|
2014-07-03 23:05:00 +00:00
|
|
|
BuildRequires: libudev-devel
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: libtool
|
2015-10-11 08:37:47 +00:00
|
|
|
BuildRequires: libxml2-devel
|
2015-01-17 21:51:12 +00:00
|
|
|
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
|
2016-04-23 17:57:49 +00:00
|
|
|
BuildRequires: python-sphinx
|
2015-01-17 21:51:12 +00:00
|
|
|
BuildRequires: python-virtualenv
|
2015-07-09 11:28:22 +00:00
|
|
|
BuildRequires: snappy-devel
|
2016-08-07 21:08:48 +00:00
|
|
|
BuildRequires: udev
|
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-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}
|
2015-10-03 07:05:03 +00:00
|
|
|
PreReq: %fillup_prereq
|
2015-05-20 12:39:54 +00:00
|
|
|
BuildRequires: net-tools
|
|
|
|
BuildRequires: libbz2-devel
|
2016-02-22 13:58:26 +00:00
|
|
|
BuildRequires: btrfsprogs
|
2011-12-15 16:51:04 +00:00
|
|
|
BuildRequires: mozilla-nss-devel
|
|
|
|
BuildRequires: keyutils-devel
|
2016-03-15 13:46:54 +00:00
|
|
|
BuildRequires: libopenssl-devel
|
2016-02-26 17:30:49 +00:00
|
|
|
BuildRequires: lsb-release
|
2016-03-15 13:46:54 +00:00
|
|
|
BuildRequires: openldap2-devel
|
2016-02-26 20:14:47 +00:00
|
|
|
BuildRequires: python-Cython
|
2016-02-26 17:30:49 +00:00
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2015-09-29 21:28:00 +00:00
|
|
|
Requires: systemd
|
2015-10-11 08:32:05 +00:00
|
|
|
BuildRequires: boost-random
|
2016-02-22 13:58:26 +00:00
|
|
|
BuildRequires: btrfs-progs
|
2011-12-15 16:51:04 +00:00
|
|
|
BuildRequires: nss-devel
|
|
|
|
BuildRequires: keyutils-libs-devel
|
2016-03-15 13:46:54 +00:00
|
|
|
BuildRequires: openldap-devel
|
|
|
|
BuildRequires: openssl-devel
|
2016-02-26 17:30:49 +00:00
|
|
|
BuildRequires: redhat-lsb-core
|
2016-02-26 20:14:47 +00:00
|
|
|
BuildRequires: Cython
|
2011-09-08 19:30:05 +00:00
|
|
|
%endif
|
2016-08-09 10:26:30 +00:00
|
|
|
# python34-... for RHEL, python3-... for all other supported distros
|
|
|
|
%if 0%{?rhel}
|
|
|
|
BuildRequires: python34-devel
|
|
|
|
BuildRequires: python34-setuptools
|
|
|
|
BuildRequires: python34-Cython
|
|
|
|
%else
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
BuildRequires: python3-Cython
|
|
|
|
%endif
|
2015-07-15 10:54:20 +00:00
|
|
|
# lttng and babeltrace for rbd-replay-prep
|
2016-03-01 05:51:09 +00:00
|
|
|
%if %{with lttng}
|
2015-09-29 18:30:43 +00:00
|
|
|
%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
|
packaging: Adding redhat-rpm-config
Some part of the rados compilation process is expecting redhat-hardened-cc1.
That's surely because of the FORTIFY compilation flag.
redhat-hardened-cc1 is part of the redhat-rpm-config so let's put it as a build
dependency.
The typical output when this issue is occuring :
cd ./pybind/rados; CPPFLAGS="-iquote \/ceph/src/include -D__CEPH__ -D_FILE_OFFSET_BITS=64 -D_THREAD_SAFE -D__STDC_FORMAT_MACROS -D_GNU_SOURCE -DCEPH_LIBDIR=\"/usr/local/lib\" -DCEPH_PKGLIBDIR=\"/usr/local/lib/ceph\" -DGTEST_USE_OWN_TR1_TUPLE=0 -D_REENTRANT " CFLAGS="-iquote \/ceph/src/include -Wall -Wtype-limits -Wignored-qualifiers -Winit-self -Wpointer-arith -fno-strict-aliasing -fsigned-char -rdynamic -O2 -g -pipe -Wall -Wp,-U_FORTIFY_SOURCE -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -fPIE -fstack-protector-strong -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free -g -O2" LDFLAGS="-L\/ceph/src/.libs -Wl,--as-needed -Wl,-z,relro -Wl,-z,now -latomic_ops " CYTHON_BUILD_DIR="/ceph/src/build" /bin/python ./setup.py build \
--build-base /ceph/src/build \
--verbose
Compiling rados.pyx because it changed.
Cythonizing rados.pyx
CXXLD libradosstriper.la
CXXLD librbd.la
CXXLD librgw.la
running build
running build_ext
building 'rados' extension
gcc -pthread -fno-strict-aliasing -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -DNDEBUG -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -iquote /ceph/src/include -Wall -Wtype-limits -Wignored-qualifiers -Winit-self -Wpointer-arith -fno-strict-aliasing -fsigned-char -rdynamic -O2 -g -pipe -Wall -Wp,-U_FORTIFY_SOURCE -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4 -fPIE -fstack-protector-strong -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free -g -O2 -iquote /ceph/src/include -D__CEPH__ -D_FILE_OFFSET_BITS=64 -D_THREAD_SAFE -D__STDC_FORMAT_MACROS -D_GNU_SOURCE -DCEPH_LIBDIR=/usr/local/lib -DCEPH_PKGLIBDIR=/usr/local/lib/ceph -DGTEST_USE_OWN_TR1_TUPLE=0 -D_REENTRANT -fPIC -I/usr/include/python2.7 -c /ceph/src/build/rados.c -o /ceph/src/build/temp.linux-x86_64-2.7/ceph/src/build/rados.o
gcc: erreur: /usr/lib/rpm/redhat/redhat-hardened-cc1: Aucun fichier ou dossier de ce type
error: command 'gcc' failed with exit status 1
Signed-off-by: Erwan Velu <erwan@redhat.com>
2016-02-22 14:11:41 +00:00
|
|
|
#hardened-cc1
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
BuildRequires: redhat-rpm-config
|
|
|
|
%endif
|
2016-04-12 13:33:45 +00:00
|
|
|
# Accelio IB/RDMA
|
|
|
|
%if 0%{with xio}
|
|
|
|
BuildRequires: libxio-devel
|
|
|
|
%endif
|
2015-09-29 20:49:18 +00:00
|
|
|
|
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
|
|
|
|
#################################################################################
|
2016-02-11 17:59:15 +00:00
|
|
|
%package base
|
|
|
|
Summary: Ceph Base Package
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: ceph-common = %{epoch}:%{version}-%{release}
|
2016-02-26 20:51:26 +00:00
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
2016-10-24 14:03:01 +00:00
|
|
|
Requires: libcephfs2 = %{epoch}:%{version}-%{release}
|
2016-03-02 14:22:28 +00:00
|
|
|
Requires: librgw2 = %{epoch}:%{version}-%{release}
|
2016-02-26 20:51:26 +00:00
|
|
|
%if 0%{with selinux}
|
|
|
|
Requires: ceph-selinux = %{epoch}:%{version}-%{release}
|
|
|
|
%endif
|
|
|
|
Requires: python
|
|
|
|
Requires: python-requests
|
2016-02-27 13:58:19 +00:00
|
|
|
Requires: python-setuptools
|
2016-02-26 20:51:26 +00:00
|
|
|
Requires: grep
|
|
|
|
Requires: xfsprogs
|
|
|
|
Requires: logrotate
|
|
|
|
Requires: util-linux
|
|
|
|
Requires: cryptsetup
|
|
|
|
Requires: findutils
|
|
|
|
Requires: which
|
2016-02-26 17:30:49 +00:00
|
|
|
%if 0%{?suse_version}
|
2016-04-23 09:42:25 +00:00
|
|
|
Recommends: ntp-daemon
|
2016-02-26 17:30:49 +00:00
|
|
|
%endif
|
2016-04-12 13:33:45 +00:00
|
|
|
%if 0%{with xio}
|
|
|
|
Requires: libxio
|
|
|
|
%endif
|
2016-02-11 17:59:15 +00:00
|
|
|
%description base
|
|
|
|
Base is the package that includes all the files shared amongst ceph servers
|
|
|
|
|
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}
|
2016-10-24 14:03:01 +00:00
|
|
|
Requires: libcephfs2 = %{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}
|
2016-11-09 10:49:48 +00:00
|
|
|
Requires: python-rgw = %{epoch}:%{version}-%{release}
|
2014-07-03 23:04:10 +00:00
|
|
|
Requires: python-requests
|
2015-10-02 21:23:17 +00:00
|
|
|
%{?systemd_requires}
|
2015-10-02 21:21:02 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
Requires(pre): pwdutils
|
|
|
|
%endif
|
2016-04-12 13:33:45 +00:00
|
|
|
%if 0%{with xio}
|
|
|
|
Requires: libxio
|
|
|
|
%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.
|
2016-02-11 17:59:15 +00:00
|
|
|
Comprised of files that are common to Ceph clients and servers.
|
|
|
|
|
|
|
|
%package mds
|
|
|
|
Summary: Ceph Metadata Server Daemon
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: ceph-base = %{epoch}:%{version}-%{release}
|
|
|
|
%description mds
|
|
|
|
ceph-mds is the metadata server daemon for the Ceph distributed file system.
|
|
|
|
One or more instances of ceph-mds collectively manage the file system
|
|
|
|
namespace, coordinating access to the shared OSD cluster.
|
|
|
|
|
|
|
|
%package mon
|
|
|
|
Summary: Ceph Monitor Daemon
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: ceph-base = %{epoch}:%{version}-%{release}
|
|
|
|
# For ceph-rest-api
|
2016-02-26 21:23:01 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
Requires: python-flask
|
|
|
|
%endif
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
Requires: python-Flask
|
|
|
|
%endif
|
2016-02-11 17:59:15 +00:00
|
|
|
%description mon
|
|
|
|
ceph-mon is the cluster monitor daemon for the Ceph distributed file
|
|
|
|
system. One or more instances of ceph-mon form a Paxos part-time
|
|
|
|
parliament cluster that provides extremely reliable and durable storage
|
|
|
|
of cluster membership, configuration, and state.
|
2014-07-03 23:04:10 +00:00
|
|
|
|
2016-09-07 05:49:58 +00:00
|
|
|
%package mgr
|
|
|
|
Summary: Ceph Manager Daemon
|
|
|
|
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
|
|
|
|
Group: System Environment/Base
|
2016-09-30 22:13:33 +00:00
|
|
|
Requires: ceph-base = %{epoch}:%{version}-%{release}
|
2016-09-07 05:49:58 +00:00
|
|
|
|
|
|
|
%description mgr
|
|
|
|
ceph-mgr enables python modules that provide services (such as the REST
|
|
|
|
module derived from Calamari) and expose CLI hooks. ceph-mgr gathers
|
|
|
|
the cluster maps, the daemon metadata, and performance counters, and
|
|
|
|
exposes all these to the python modules.
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
%package fuse
|
|
|
|
Summary: Ceph fuse-based client
|
|
|
|
Group: System Environment/Base
|
|
|
|
%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
|
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
|
|
|
|
|
2016-02-04 07:44:10 +00:00
|
|
|
%package -n rbd-mirror
|
|
|
|
Summary: Ceph daemon for mirroring RBD images
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: ceph-common = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
%description -n rbd-mirror
|
|
|
|
Daemon for mirroring RBD images between Ceph clusters, streaming
|
|
|
|
changes asynchronously.
|
|
|
|
|
2015-11-13 09:31:00 +00:00
|
|
|
%package -n rbd-nbd
|
|
|
|
Summary: Ceph RBD client base on NBD
|
|
|
|
Group: System Environment/Base
|
|
|
|
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}
|
2016-02-03 22:44:02 +00:00
|
|
|
Requires: librgw2 = %{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
|
2016-03-19 21:30:26 +00:00
|
|
|
RADOS is a distributed object store used by the Ceph distributed
|
|
|
|
storage system. This package provides a REST gateway to the
|
|
|
|
object store that aims to implement a superset of Amazon's S3
|
|
|
|
service as well as the OpenStack Object Storage ("Swift") API.
|
2010-07-09 09:13:04 +00:00
|
|
|
|
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
|
2016-03-15 18:56:54 +00:00
|
|
|
Requires: ceph-base = %{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
|
|
|
|
|
2016-02-11 17:59:15 +00:00
|
|
|
%package osd
|
|
|
|
Summary: Ceph Object Storage Daemon
|
|
|
|
Group: System Environment/Base
|
|
|
|
Requires: ceph-base = %{epoch}:%{version}-%{release}
|
2016-02-26 23:02:00 +00:00
|
|
|
# for sgdisk, used by ceph-disk
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
Requires: gdisk
|
|
|
|
%endif
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
Requires: gptfdisk
|
|
|
|
%endif
|
2016-05-31 23:50:05 +00:00
|
|
|
Requires: parted
|
2016-02-11 17:59:15 +00:00
|
|
|
%description osd
|
|
|
|
ceph-osd is the object storage daemon for the Ceph distributed file
|
|
|
|
system. It is responsible for storing objects on a local file system
|
|
|
|
and providing access to them over the network.
|
|
|
|
|
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.
|
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%package -n librados-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
Summary: RADOS headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
2016-06-17 15:07:09 +00:00
|
|
|
Provides: librados2-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: librados2-devel < %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
%description -n librados-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
This package contains libraries and headers needed to develop programs
|
|
|
|
that use RADOS object store.
|
|
|
|
|
2016-02-03 22:44:02 +00:00
|
|
|
%package -n librgw2
|
|
|
|
Summary: RADOS gateway client library
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
%description -n librgw2
|
|
|
|
This package provides a library implementation of the RADOS gateway
|
|
|
|
(distributed object store with S3 and Swift personalities).
|
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%package -n librgw-devel
|
2016-02-03 22:44:02 +00:00
|
|
|
Summary: RADOS gateway client library
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
2016-06-16 08:54:22 +00:00
|
|
|
Requires: librados-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: librgw2 = %{epoch}:%{version}-%{release}
|
2016-06-17 15:07:09 +00:00
|
|
|
Provides: librgw2-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: librgw2-devel < %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
%description -n librgw-devel
|
2016-02-03 22:44:02 +00:00
|
|
|
This package contains libraries and headers needed to develop programs
|
|
|
|
that use RADOS gateway client library.
|
|
|
|
|
2016-11-09 10:49:48 +00:00
|
|
|
%package -n python-rgw
|
|
|
|
Summary: Python 2 libraries for the RADOS gateway
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librgw2 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python-rados = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: python-ceph < %{epoch}:%{version}-%{release}
|
|
|
|
%description -n python-rgw
|
|
|
|
This package contains Python 2 libraries for interacting with Cephs RADOS
|
|
|
|
gateway.
|
|
|
|
|
|
|
|
%package -n python%{python3_pkgversion}-rgw
|
|
|
|
Summary: Python 3 libraries for the RADOS gateway
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librgw2 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python%{python3_pkgversion}-rados = %{epoch}:%{version}-%{release}
|
|
|
|
%description -n python%{python3_pkgversion}-rgw
|
|
|
|
This package contains Python 3 libraries for interacting with Cephs RADOS
|
|
|
|
gateway.
|
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
%package -n python-rados
|
2016-08-09 10:26:30 +00:00
|
|
|
Summary: Python 2 libraries for the RADOS object store
|
2015-01-07 09:26:49 +00:00
|
|
|
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
|
2016-08-09 10:26:30 +00:00
|
|
|
This package contains Python 2 libraries for interacting with Cephs RADOS
|
|
|
|
object store.
|
|
|
|
|
|
|
|
%package -n python%{python3_pkgversion}-rados
|
|
|
|
Summary: Python 3 libraries for the RADOS object store
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: python%{python3_pkgversion}
|
|
|
|
Requires: librados2 = %{epoch}:%{version}-%{release}
|
|
|
|
%description -n python%{python3_pkgversion}-rados
|
|
|
|
This package contains Python 3 libraries for interacting with Cephs RADOS
|
2015-01-07 09:26:49 +00:00
|
|
|
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.
|
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%package -n libradosstriper-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
Summary: RADOS striping interface headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: libradosstriper1 = %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
Requires: librados-devel = %{epoch}:%{version}-%{release}
|
2015-01-07 09:00:21 +00:00
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
2016-06-17 15:07:09 +00:00
|
|
|
Provides: libradosstriper1-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: libradosstriper1-devel < %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
%description -n libradosstriper-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
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.
|
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%package -n librbd-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
Summary: RADOS block device headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
Requires: librados-devel = %{epoch}:%{version}-%{release}
|
2015-01-07 09:00:21 +00:00
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
2016-06-17 15:07:09 +00:00
|
|
|
Provides: librbd1-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: librbd1-devel < %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
%description -n librbd-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
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
|
2016-08-09 10:26:30 +00:00
|
|
|
Summary: Python 2 libraries for the RADOS block device
|
2015-01-07 09:26:49 +00:00
|
|
|
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
|
2016-08-09 10:26:30 +00:00
|
|
|
This package contains Python 2 libraries for interacting with Cephs RADOS
|
|
|
|
block device.
|
|
|
|
|
|
|
|
%package -n python%{python3_pkgversion}-rbd
|
|
|
|
Summary: Python 3 libraries for the RADOS block device
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
Requires: librbd1 = %{epoch}:%{version}-%{release}
|
|
|
|
Requires: python%{python3_pkgversion}-rados = %{epoch}:%{version}-%{release}
|
|
|
|
%description -n python%{python3_pkgversion}-rbd
|
|
|
|
This package contains Python 3 libraries for interacting with Cephs RADOS
|
2015-01-07 09:26:49 +00:00
|
|
|
block device.
|
|
|
|
|
2016-10-24 14:03:01 +00:00
|
|
|
%package -n libcephfs2
|
2011-12-15 16:51:04 +00:00
|
|
|
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
|
2016-10-24 14:03:01 +00:00
|
|
|
%description -n libcephfs2
|
2011-12-15 16:51:04 +00:00
|
|
|
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.
|
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%package -n libcephfs-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
Summary: Ceph distributed file system headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPL-2.0
|
2016-10-24 14:03:01 +00:00
|
|
|
Requires: libcephfs2 = %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
Requires: librados-devel = %{epoch}:%{version}-%{release}
|
2015-01-07 09:00:21 +00:00
|
|
|
Obsoletes: ceph-devel < %{epoch}:%{version}-%{release}
|
2016-10-24 14:03:01 +00:00
|
|
|
Provides: libcephfs2-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: libcephfs2-devel < %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
%description -n libcephfs-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
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
|
2016-08-09 10:26:30 +00:00
|
|
|
Summary: Python 2 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
|
2016-10-24 14:03:01 +00:00
|
|
|
Requires: libcephfs2 = %{epoch}:%{version}-%{release}
|
2015-01-07 09:26:49 +00:00
|
|
|
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
|
2016-08-09 10:26:30 +00:00
|
|
|
This package contains Python 2 libraries for interacting with Cephs distributed
|
|
|
|
file system.
|
|
|
|
|
|
|
|
%package -n python%{python3_pkgversion}-cephfs
|
|
|
|
Summary: Python 3 libraries for Ceph distributed file system
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
2016-10-24 14:03:01 +00:00
|
|
|
Requires: libcephfs2 = %{epoch}:%{version}-%{release}
|
2016-08-09 10:26:30 +00:00
|
|
|
Requires: python%{python3_pkgversion}-rados = %{epoch}:%{version}-%{release}
|
|
|
|
%description -n python%{python3_pkgversion}-cephfs
|
|
|
|
This package contains Python 3 libraries for interacting with Cephs distributed
|
2015-01-07 09:26:49 +00:00
|
|
|
file system.
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-08-09 10:26:30 +00:00
|
|
|
%package -n python%{python3_pkgversion}-ceph-argparse
|
|
|
|
Summary: Python 3 utility libraries for Ceph CLI
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
License: LGPL-2.0
|
|
|
|
%description -n python%{python3_pkgversion}-ceph-argparse
|
|
|
|
This package contains types and routines for Python 3 used by the Ceph CLI as
|
|
|
|
well as the RESTful interface. These have to do with querying the daemons for
|
|
|
|
command-description information, validating user command input against those
|
|
|
|
descriptions, and submitting the command to the appropriate daemon.
|
|
|
|
|
2016-08-23 11:36:55 +00:00
|
|
|
%if 0%{with ceph_test_package}
|
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.
|
2016-08-23 11:36:55 +00:00
|
|
|
%endif
|
2012-11-02 22:56:34 +00:00
|
|
|
|
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
|
2016-10-24 14:03:01 +00:00
|
|
|
Requires: libcephfs2 = %{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.
|
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%package -n libcephfs_jni-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}
|
2016-06-17 15:07:09 +00:00
|
|
|
Provides: libcephfs_jni1-devel = %{epoch}:%{version}-%{release}
|
|
|
|
Obsoletes: libcephfs_jni1-devel < %{epoch}:%{version}-%{release}
|
2016-06-16 08:25:22 +00:00
|
|
|
%description -n libcephfs_jni-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
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
|
|
|
Requires: junit
|
|
|
|
BuildRequires: junit
|
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
|
2016-03-15 18:56:54 +00:00
|
|
|
Requires: ceph-base = %{epoch}:%{version}-%{release}
|
2015-05-15 13:18:05 +00:00
|
|
|
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-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}
|
2016-11-09 10:49:48 +00:00
|
|
|
Requires: python-rgw = %{epoch}:%{version}-%{release}
|
2015-01-07 09:26:49 +00:00
|
|
|
Provides: python-ceph
|
|
|
|
%description -n python-ceph-compat
|
|
|
|
This is a compatibility package to accommodate python-ceph split into
|
2016-11-09 10:49:48 +00:00
|
|
|
python-rados, python-rbd, python-rgw and python-cephfs. Packages still
|
|
|
|
depending on python-ceph should be fixed to depend on python-rados,
|
|
|
|
python-rbd, python-rgw or python-cephfs instead.
|
2015-01-07 09:26:49 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
|
|
|
# common
|
|
|
|
#################################################################################
|
2008-07-11 00:24:26 +00:00
|
|
|
%prep
|
2016-07-22 15:19:40 +00:00
|
|
|
%autosetup -p1 -n @TARBALL_BASENAME@
|
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
|
|
|
|
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/'`
|
|
|
|
|
2016-06-29 12:29:43 +00:00
|
|
|
export CPPFLAGS="$java_inc"
|
|
|
|
export CFLAGS="$RPM_OPT_FLAGS"
|
|
|
|
export CXXFLAGS="$RPM_OPT_FLAGS"
|
|
|
|
|
2016-12-01 17:08:20 +00:00
|
|
|
env | sort
|
|
|
|
|
2016-06-29 12:29:43 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake .. \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=%{_libdir} \
|
|
|
|
-DCMAKE_INSTALL_LIBEXECDIR=%{_libexecdir} \
|
|
|
|
-DCMAKE_INSTALL_LOCALSTATEDIR=%{_localstatedir} \
|
|
|
|
-DCMAKE_INSTALL_SYSCONFDIR=%{_sysconfdir} \
|
|
|
|
-DCMAKE_INSTALL_MANDIR=%{_mandir} \
|
|
|
|
-DCMAKE_INSTALL_DOCDIR=%{_docdir}/ceph \
|
2016-11-05 01:10:08 +00:00
|
|
|
-DWITH_EMBEDDED=OFF \
|
2016-06-29 12:29:43 +00:00
|
|
|
-DWITH_MANPAGE=ON \
|
2016-09-08 08:47:59 +00:00
|
|
|
-DWITH_PYTHON3=ON \
|
2016-06-29 12:29:43 +00:00
|
|
|
-DWITH_SYSTEMD=ON \
|
2016-03-24 10:59:33 +00:00
|
|
|
%if 0%{?rhel} && ! 0%{?centos}
|
2016-06-29 12:29:43 +00:00
|
|
|
-DWITH_SUBMAN=ON \
|
2015-05-15 13:18:05 +00:00
|
|
|
%endif
|
2016-04-12 13:33:45 +00:00
|
|
|
%if 0%{with xio}
|
2016-06-29 12:29:43 +00:00
|
|
|
-DWITH_XIO=ON \
|
|
|
|
%endif
|
2016-08-23 11:36:55 +00:00
|
|
|
%if 0%{without ceph_test_package}
|
|
|
|
-DWITH_TESTS=OFF \
|
|
|
|
%endif
|
2016-06-29 12:29:43 +00:00
|
|
|
%if 0%{with cephfs_java}
|
|
|
|
-DWITH_CEPHFS_JAVA=ON \
|
2016-04-12 13:33:45 +00:00
|
|
|
%endif
|
2015-05-15 13:18:05 +00:00
|
|
|
%if 0%{with selinux}
|
2016-06-29 12:29:43 +00:00
|
|
|
-DWITH_SELINUX=ON \
|
2015-05-29 11:28:24 +00:00
|
|
|
%endif
|
2016-06-29 12:29:43 +00:00
|
|
|
%if %{with lttng}
|
|
|
|
-DWITH_LTTNG=ON \
|
|
|
|
-DHAVE_BABELTRACE=ON \
|
|
|
|
%else
|
|
|
|
-DWITH_LTTNG=OFF \
|
|
|
|
-DHAVE_BABELTRACE=OFF \
|
2016-03-01 05:51:09 +00:00
|
|
|
%endif
|
2016-06-29 12:29:43 +00:00
|
|
|
$CEPH_EXTRA_CMAKE_ARGS \
|
|
|
|
%if 0%{with ocf}
|
|
|
|
-DWITH_OCF=ON
|
2016-05-06 11:29:03 +00:00
|
|
|
%endif
|
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
|
|
|
|
2016-08-23 11:31:05 +00:00
|
|
|
%if 0%{with make_check}
|
2015-05-29 11:33:13 +00:00
|
|
|
%check
|
|
|
|
# run in-tree unittests
|
2016-06-29 12:29:43 +00:00
|
|
|
cd build
|
|
|
|
ctest %{?_smp_mflags}
|
2015-05-29 11:33:13 +00:00
|
|
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-07-11 00:24:26 +00:00
|
|
|
%install
|
2016-06-29 12:29:43 +00:00
|
|
|
pushd build
|
2015-10-11 15:20:46 +00:00
|
|
|
make DESTDIR=%{buildroot} install
|
2016-06-29 12:29:43 +00:00
|
|
|
# we have dropped sysvinit bits
|
|
|
|
rm -f %{buildroot}/%{_sysconfdir}/init.d/ceph
|
|
|
|
popd
|
2016-09-23 20:49:56 +00:00
|
|
|
install -m 0644 -D src/etc-rbdmap %{buildroot}%{_sysconfdir}/ceph/rbdmap
|
2015-10-03 07:05:03 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
2015-10-11 15:20:46 +00:00
|
|
|
install -m 0644 -D etc/sysconfig/ceph %{buildroot}%{_sysconfdir}/sysconfig/ceph
|
2015-10-03 07:05:03 +00:00
|
|
|
%endif
|
|
|
|
%if 0%{?suse_version}
|
2015-10-11 15:20:46 +00:00
|
|
|
install -m 0644 -D etc/sysconfig/ceph %{buildroot}%{_localstatedir}/adm/fillup-templates/sysconfig.%{name}
|
2015-10-03 07:05:03 +00:00
|
|
|
%endif
|
2015-10-11 15:20:46 +00:00
|
|
|
install -m 0644 -D systemd/ceph.tmpfiles.d %{buildroot}%{_tmpfilesdir}/ceph-common.conf
|
|
|
|
install -m 0755 -D systemd/ceph %{buildroot}%{_sbindir}/rcceph
|
|
|
|
install -m 0644 -D systemd/50-ceph.preset %{buildroot}%{_libexecdir}/systemd/system-preset/50-ceph.preset
|
|
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
|
|
install -m 0644 -D src/logrotate.conf %{buildroot}%{_sysconfdir}/logrotate.d/ceph
|
|
|
|
chmod 0644 %{buildroot}%{_docdir}/ceph/sample.ceph.conf
|
|
|
|
chmod 0644 %{buildroot}%{_docdir}/ceph/sample.fetch_config
|
2008-07-11 00:24:26 +00:00
|
|
|
|
2016-07-06 08:13:03 +00:00
|
|
|
# firewall templates and /sbin/mount.ceph symlink
|
2015-04-29 03:12:38 +00:00
|
|
|
%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
|
2016-07-19 14:40:36 +00:00
|
|
|
mkdir -p %{buildroot}/sbin
|
|
|
|
ln -sf %{_sbindir}/mount.ceph %{buildroot}/sbin/mount.ceph
|
2015-04-29 03:12:38 +00:00
|
|
|
%endif
|
|
|
|
|
2013-01-29 06:49:45 +00:00
|
|
|
# udev rules
|
2015-10-11 15:20:46 +00:00
|
|
|
install -m 0644 -D udev/50-rbd.rules %{buildroot}%{_udevrulesdir}/50-rbd.rules
|
2016-06-23 07:23:09 +00:00
|
|
|
install -m 0644 -D udev/60-ceph-by-parttypeuuid.rules %{buildroot}%{_udevrulesdir}/60-ceph-by-parttypeuuid.rules
|
2015-10-11 16:05:12 +00:00
|
|
|
install -m 0644 -D udev/95-ceph-osd.rules %{buildroot}%{_udevrulesdir}/95-ceph-osd.rules
|
2014-07-03 23:10:55 +00:00
|
|
|
|
2013-02-26 07:51:25 +00:00
|
|
|
#set up placeholder directories
|
2015-10-11 15:20:46 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/ceph
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/run/ceph
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/log/ceph
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/tmp
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/mon
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/osd
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/mds
|
2016-09-07 05:49:58 +00:00
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/mgr
|
2015-10-11 15:20:46 +00:00
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/radosgw
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/bootstrap-osd
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/bootstrap-mds
|
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/lib/ceph/bootstrap-rgw
|
2013-03-28 23:12:33 +00:00
|
|
|
|
2016-08-26 08:45:52 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
# create __pycache__ directories and their contents
|
|
|
|
%py3_compile %{buildroot}%{python3_sitelib}
|
|
|
|
%endif
|
|
|
|
|
2008-07-11 00:24:26 +00:00
|
|
|
%clean
|
2015-10-11 15:20:46 +00:00
|
|
|
rm -rf %{buildroot}
|
2008-07-11 00:24:26 +00:00
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
2016-03-01 20:25:11 +00:00
|
|
|
# files and systemd scriptlets
|
2011-12-15 16:51:04 +00:00
|
|
|
#################################################################################
|
2008-07-11 00:24:26 +00:00
|
|
|
%files
|
2016-02-11 17:59:15 +00:00
|
|
|
|
|
|
|
%files base
|
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
|
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
|
2015-05-02 15:19:11 +00:00
|
|
|
%{_bindir}/ceph-detect-init
|
2016-04-19 12:51:01 +00:00
|
|
|
%{_libexecdir}/systemd/system-preset/50-ceph.preset
|
2013-04-04 16:18:30 +00:00
|
|
|
%{_sbindir}/ceph-create-keys
|
|
|
|
%{_sbindir}/rcceph
|
2016-02-15 19:10:59 +00:00
|
|
|
%dir %{_libexecdir}/ceph
|
|
|
|
%{_libexecdir}/ceph/ceph_common.sh
|
2013-04-04 16:18:30 +00:00
|
|
|
%dir %{_libdir}/rados-classes
|
2016-02-29 16:29:46 +00:00
|
|
|
%{_libdir}/rados-classes/*
|
2016-02-15 19:10:59 +00:00
|
|
|
%dir %{_libdir}/ceph
|
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*
|
2016-03-01 05:51:09 +00:00
|
|
|
%if %{with lttng}
|
2015-09-29 18:30:43 +00:00
|
|
|
%{_libdir}/libos_tp.so*
|
|
|
|
%{_libdir}/libosd_tp.so*
|
|
|
|
%endif
|
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
|
2016-02-11 17:59:15 +00:00
|
|
|
%{_unitdir}/ceph.target
|
2015-05-02 15:19:11 +00:00
|
|
|
%{python_sitelib}/ceph_detect_init*
|
2016-01-01 17:07:39 +00:00
|
|
|
%{python_sitelib}/ceph_disk*
|
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*
|
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-run.8*
|
2010-04-30 20:39:49 +00:00
|
|
|
%{_mandir}/man8/crushtool.8*
|
|
|
|
%{_mandir}/man8/osdmaptool.8*
|
|
|
|
%{_mandir}/man8/monmaptool.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/bootstrap-osd
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/bootstrap-mds
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/bootstrap-rgw
|
2009-11-26 05:45:11 +00:00
|
|
|
|
2016-03-01 20:25:11 +00:00
|
|
|
%post base
|
|
|
|
/sbin/ldconfig
|
2016-04-19 12:48:41 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%fillup_only
|
2016-06-27 19:16:54 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-19 12:48:41 +00:00
|
|
|
/usr/bin/systemctl preset ceph.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_post ceph.target
|
2016-03-01 20:25:11 +00:00
|
|
|
%endif
|
2016-06-27 18:20:27 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-27 16:00:08 +00:00
|
|
|
/usr/bin/systemctl start ceph.target >/dev/null 2>&1 || :
|
2016-06-27 18:20:27 +00:00
|
|
|
fi
|
2016-03-01 20:25:11 +00:00
|
|
|
|
|
|
|
%preun base
|
2016-04-19 12:48:41 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%service_del_preun ceph.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_preun ceph.target
|
2016-03-01 20:25:11 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun base
|
|
|
|
/sbin/ldconfig
|
2016-04-19 12:48:41 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
DISABLE_RESTART_ON_UPDATE="yes"
|
|
|
|
%service_del_postun ceph.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_postun ceph.target
|
2016-03-01 20:25:11 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%files common
|
2014-07-03 23:04:10 +00:00
|
|
|
%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
|
2016-03-15 17:10:56 +00:00
|
|
|
%{_bindir}/cephfs-data-scan
|
|
|
|
%{_bindir}/cephfs-journal-tool
|
|
|
|
%{_bindir}/cephfs-table-tool
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_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
|
2016-07-18 14:16:11 +00:00
|
|
|
%{_sbindir}/mount.ceph
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
/sbin/mount.ceph
|
|
|
|
%endif
|
2016-03-01 05:51:09 +00:00
|
|
|
%if %{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
|
|
|
%{_tmpfilesdir}/ceph-common.conf
|
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*
|
2016-07-18 14:16:11 +00:00
|
|
|
%{_mandir}/man8/mount.ceph.8*
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_mandir}/man8/rados.8*
|
|
|
|
%{_mandir}/man8/rbd.8*
|
2016-03-19 20:59:47 +00:00
|
|
|
%{_mandir}/man8/rbdmap.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*
|
2016-02-15 19:12:58 +00:00
|
|
|
%dir %{_datadir}/ceph/
|
2014-07-03 23:04:10 +00:00
|
|
|
%{_datadir}/ceph/known_hosts_drop.ceph.com
|
2016-08-19 20:09:30 +00:00
|
|
|
%{_datadir}/ceph/id_rsa_drop.ceph.com
|
|
|
|
%{_datadir}/ceph/id_rsa_drop.ceph.com.pub
|
2014-07-03 23:04:10 +00:00
|
|
|
%dir %{_sysconfdir}/ceph/
|
|
|
|
%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
|
|
|
%{_unitdir}/rbdmap.service
|
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*
|
2016-08-07 21:08:48 +00:00
|
|
|
%dir %{_udevrulesdir}
|
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
|
|
|
|
2016-03-01 20:25:11 +00:00
|
|
|
%pre common
|
2016-03-23 12:46:25 +00:00
|
|
|
CEPH_GROUP_ID=167
|
|
|
|
CEPH_USER_ID=167
|
2015-09-03 14:28:19 +00:00
|
|
|
%if 0%{?rhel} || 0%{?fedora}
|
2015-10-11 16:27:45 +00:00
|
|
|
/usr/sbin/groupadd ceph -g $CEPH_GROUP_ID -o -r 2>/dev/null || :
|
|
|
|
/usr/sbin/useradd ceph -u $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}
|
2016-03-23 12:46:25 +00:00
|
|
|
if ! getent group ceph >/dev/null ; then
|
|
|
|
CEPH_GROUP_ID_OPTION=""
|
|
|
|
getent group $CEPH_GROUP_ID >/dev/null || CEPH_GROUP_ID_OPTION="-g $CEPH_GROUP_ID"
|
|
|
|
groupadd ceph $CEPH_GROUP_ID_OPTION -r 2>/dev/null || :
|
|
|
|
fi
|
|
|
|
if ! getent passwd ceph >/dev/null ; then
|
|
|
|
CEPH_USER_ID_OPTION=""
|
|
|
|
getent passwd $CEPH_USER_ID >/dev/null || CEPH_USER_ID_OPTION="-u $CEPH_USER_ID"
|
2016-05-12 17:23:31 +00:00
|
|
|
useradd ceph $CEPH_USER_ID_OPTION -r -g ceph -s /sbin/nologin 2>/dev/null || :
|
2016-04-16 11:48:03 +00:00
|
|
|
fi
|
2016-05-12 17:23:31 +00:00
|
|
|
usermod -c "Ceph storage service" \
|
2016-08-12 11:30:53 +00:00
|
|
|
-d %{_localstatedir}/lib/ceph \
|
2016-05-12 17:23:31 +00:00
|
|
|
-g ceph \
|
|
|
|
-s /sbin/nologin \
|
|
|
|
ceph
|
2015-10-02 21:21:02 +00:00
|
|
|
%endif
|
|
|
|
exit 0
|
2014-07-03 23:04:10 +00:00
|
|
|
|
2016-03-01 20:25:11 +00:00
|
|
|
%post common
|
2015-11-26 14:22:21 +00:00
|
|
|
%tmpfiles_create %{_tmpfilesdir}/ceph-common.conf
|
2014-07-03 23:04:10 +00:00
|
|
|
|
2016-03-01 20:25:11 +00:00
|
|
|
%postun common
|
2014-07-03 23:04:10 +00:00
|
|
|
# Package removal cleanup
|
|
|
|
if [ "$1" -eq "0" ] ; then
|
2015-10-11 16:27:45 +00:00
|
|
|
rm -rf %{_localstatedir}/log/ceph
|
|
|
|
rm -rf %{_sysconfdir}/ceph
|
2014-07-03 23:04:10 +00:00
|
|
|
fi
|
2013-02-26 07:51:25 +00:00
|
|
|
|
2016-02-11 17:59:15 +00:00
|
|
|
%files mds
|
|
|
|
%{_bindir}/ceph-mds
|
|
|
|
%{_mandir}/man8/ceph-mds.8*
|
|
|
|
%{_unitdir}/ceph-mds@.service
|
|
|
|
%{_unitdir}/ceph-mds.target
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/mds
|
|
|
|
|
2016-04-19 12:48:41 +00:00
|
|
|
%post mds
|
|
|
|
%if 0%{?suse_version}
|
2016-06-27 19:16:54 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-19 12:48:41 +00:00
|
|
|
/usr/bin/systemctl preset ceph-mds@\*.service ceph-mds.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_post ceph-mds@\*.service ceph-mds.target
|
|
|
|
%endif
|
2016-06-27 18:20:27 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-27 16:00:08 +00:00
|
|
|
/usr/bin/systemctl start ceph-mds.target >/dev/null 2>&1 || :
|
2016-06-27 18:20:27 +00:00
|
|
|
fi
|
2016-04-19 12:48:41 +00:00
|
|
|
|
|
|
|
%preun mds
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%service_del_preun ceph-mds@\*.service ceph-mds.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_preun ceph-mds@\*.service ceph-mds.target
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun mds
|
|
|
|
test -n "$FIRST_ARG" || FIRST_ARG=$1
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
DISABLE_RESTART_ON_UPDATE="yes"
|
|
|
|
%service_del_postun ceph-mds@\*.service ceph-mds.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_postun ceph-mds@\*.service ceph-mds.target
|
|
|
|
%endif
|
|
|
|
if [ $FIRST_ARG -ge 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.
|
2015-10-11 16:27:45 +00:00
|
|
|
SYSCONF_CEPH=%{_sysconfdir}/sysconfig/ceph
|
2016-04-19 12:48:41 +00:00
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
/usr/bin/systemctl try-restart ceph-mds@\*.service > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-09-07 05:49:58 +00:00
|
|
|
%files mgr
|
|
|
|
%{_bindir}/ceph-mgr
|
|
|
|
%{_libdir}/ceph/mgr
|
|
|
|
%{_unitdir}/ceph-mgr@.service
|
|
|
|
%{_unitdir}/ceph-mgr.target
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/mgr
|
|
|
|
|
|
|
|
%post mgr
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
if [ $1 -eq 1 ] ; then
|
|
|
|
/usr/bin/systemctl preset ceph-mgr@\*.service ceph-mgr.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_post ceph-mgr@\*.service ceph-mgr.target
|
|
|
|
%endif
|
|
|
|
if [ $1 -eq 1 ] ; then
|
|
|
|
/usr/bin/systemctl start ceph-mgr.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%preun mgr
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%service_del_preun ceph-mgr@\*.service ceph-mgr.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_preun ceph-mgr@\*.service ceph-mgr.target
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun mgr
|
|
|
|
test -n "$FIRST_ARG" || FIRST_ARG=$1
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
DISABLE_RESTART_ON_UPDATE="yes"
|
|
|
|
%service_del_postun ceph-mgr@\*.service ceph-mgr.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_postun ceph-mgr@\*.service ceph-mgr.target
|
|
|
|
%endif
|
|
|
|
if [ $FIRST_ARG -ge 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=%{_sysconfdir}/sysconfig/ceph
|
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
/usr/bin/systemctl try-restart ceph-mgr@\*.service > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2016-02-11 17:59:15 +00:00
|
|
|
%files mon
|
|
|
|
%{_bindir}/ceph-mon
|
|
|
|
%{_bindir}/ceph-rest-api
|
|
|
|
%{_mandir}/man8/ceph-mon.8*
|
|
|
|
%{_mandir}/man8/ceph-rest-api.8*
|
|
|
|
%{python_sitelib}/ceph_rest_api.py*
|
|
|
|
%{_unitdir}/ceph-mon@.service
|
|
|
|
%{_unitdir}/ceph-mon.target
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/mon
|
|
|
|
|
2016-04-19 12:48:41 +00:00
|
|
|
%post mon
|
|
|
|
%if 0%{?suse_version}
|
2016-06-27 19:16:54 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-19 12:48:41 +00:00
|
|
|
/usr/bin/systemctl preset ceph-create-keys@\*.service ceph-mon@\*.service ceph-mon.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_post ceph-create-keys@\*.service ceph-mon@\*.service ceph-mon.target
|
|
|
|
%endif
|
2016-06-27 18:20:27 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-27 16:00:08 +00:00
|
|
|
/usr/bin/systemctl start ceph-mon.target >/dev/null 2>&1 || :
|
2016-06-27 18:20:27 +00:00
|
|
|
fi
|
2016-04-19 12:48:41 +00:00
|
|
|
|
|
|
|
%preun mon
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%service_del_preun ceph-create-keys@\*.service ceph-mon@\*.service ceph-mon.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_preun ceph-create-keys@\*.service ceph-mon@\*.service ceph-mon.target
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun mon
|
|
|
|
test -n "$FIRST_ARG" || FIRST_ARG=$1
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
DISABLE_RESTART_ON_UPDATE="yes"
|
|
|
|
%service_del_postun ceph-create-keys@\*.service ceph-mon@\*.service ceph-mon.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_postun ceph-create-keys@\*.service ceph-mon@\*.service ceph-mon.target
|
|
|
|
%endif
|
|
|
|
if [ $FIRST_ARG -ge 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.
|
2015-10-11 16:27:45 +00:00
|
|
|
SYSCONF_CEPH=%{_sysconfdir}/sysconfig/ceph
|
2016-04-19 12:48:41 +00:00
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
/usr/bin/systemctl try-restart ceph-create-keys@\*.service ceph-mon@\*.service > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
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*
|
2014-07-03 23:10:55 +00:00
|
|
|
%{_sbindir}/mount.fuse.ceph
|
2016-10-19 00:20:34 +00:00
|
|
|
%{_unitdir}/ceph-fuse@.service
|
|
|
|
%{_unitdir}/ceph-fuse.target
|
2010-04-30 20:39:49 +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*
|
|
|
|
|
2016-02-04 07:44:10 +00:00
|
|
|
%files -n rbd-mirror
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/rbd-mirror
|
|
|
|
%{_mandir}/man8/rbd-mirror.8*
|
2016-03-18 19:09:21 +00:00
|
|
|
%{_unitdir}/ceph-rbd-mirror@.service
|
|
|
|
%{_unitdir}/ceph-rbd-mirror.target
|
2016-02-04 07:44:10 +00:00
|
|
|
|
2016-04-27 16:10:51 +00:00
|
|
|
%post -n rbd-mirror
|
|
|
|
%if 0%{?suse_version}
|
2016-06-27 19:16:54 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-27 16:10:51 +00:00
|
|
|
/usr/bin/systemctl preset ceph-rbd-mirror@\*.service ceph-rbd-mirror.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_post ceph-rbd-mirror@\*.service ceph-rbd-mirror.target
|
|
|
|
%endif
|
2016-06-27 18:20:27 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-27 16:10:51 +00:00
|
|
|
/usr/bin/systemctl start ceph-rbd-mirror.target >/dev/null 2>&1 || :
|
2016-06-27 18:20:27 +00:00
|
|
|
fi
|
2016-04-27 16:10:51 +00:00
|
|
|
|
|
|
|
%preun -n rbd-mirror
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%service_del_preun ceph-rbd-mirror@\*.service ceph-rbd-mirror.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_preun ceph-rbd-mirror@\*.service ceph-rbd-mirror.target
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun -n rbd-mirror
|
|
|
|
test -n "$FIRST_ARG" || FIRST_ARG=$1
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
DISABLE_RESTART_ON_UPDATE="yes"
|
|
|
|
%service_del_postun ceph-rbd-mirror@\*.service ceph-rbd-mirror.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_postun ceph-rbd-mirror@\*.service ceph-rbd-mirror.target
|
|
|
|
%endif
|
|
|
|
if [ $FIRST_ARG -ge 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.
|
2015-10-11 16:27:45 +00:00
|
|
|
SYSCONF_CEPH=%{_sysconfdir}/sysconfig/ceph
|
2016-04-27 16:10:51 +00:00
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
/usr/bin/systemctl try-restart ceph-rbd-mirror@\*.service > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-11-13 09:31:00 +00:00
|
|
|
%files -n rbd-nbd
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_bindir}/rbd-nbd
|
|
|
|
%{_mandir}/man8/rbd-nbd.8*
|
|
|
|
|
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
|
2016-02-18 16:26:03 +00:00
|
|
|
%{_bindir}/radosgw-token
|
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
|
2016-02-11 17:59:15 +00:00
|
|
|
%{_unitdir}/ceph-radosgw@.service
|
|
|
|
%{_unitdir}/ceph-radosgw.target
|
2010-07-09 09:13:04 +00:00
|
|
|
|
2011-10-17 15:51:47 +00:00
|
|
|
%post radosgw
|
2015-08-26 14:32:57 +00:00
|
|
|
%if 0%{?suse_version}
|
2016-06-27 19:16:54 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-19 12:48:41 +00:00
|
|
|
/usr/bin/systemctl preset ceph-radosgw@\*.service ceph-radosgw.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_post ceph-radosgw@\*.service ceph-radosgw.target
|
2011-10-17 15:51:47 +00:00
|
|
|
%endif
|
2016-06-27 18:20:27 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-27 16:00:08 +00:00
|
|
|
/usr/bin/systemctl start ceph-radosgw.target >/dev/null 2>&1 || :
|
2016-06-27 18:20:27 +00:00
|
|
|
fi
|
2011-10-17 15:51:47 +00:00
|
|
|
|
|
|
|
%preun radosgw
|
2016-04-19 12:48:41 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%service_del_preun ceph-radosgw@\*.service ceph-radosgw.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_preun ceph-radosgw@\*.service ceph-radosgw.target
|
2011-10-17 15:51:47 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun radosgw
|
2016-04-19 12:48:41 +00:00
|
|
|
test -n "$FIRST_ARG" || FIRST_ARG=$1
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
DISABLE_RESTART_ON_UPDATE="yes"
|
|
|
|
%service_del_postun ceph-radosgw@\*.service ceph-radosgw.target
|
2011-10-17 15:51:47 +00:00
|
|
|
%endif
|
2016-04-19 12:48:41 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_postun ceph-radosgw@\*.service ceph-radosgw.target
|
|
|
|
%endif
|
|
|
|
if [ $FIRST_ARG -ge 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.
|
2015-10-11 16:27:45 +00:00
|
|
|
SYSCONF_CEPH=%{_sysconfdir}/sysconfig/ceph
|
2016-04-19 12:48:41 +00:00
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
/usr/bin/systemctl try-restart ceph-radosgw@\*.service > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
fi
|
2013-10-15 21:27:35 +00:00
|
|
|
|
2016-02-11 17:59:15 +00:00
|
|
|
%files osd
|
|
|
|
%{_bindir}/ceph-clsinfo
|
|
|
|
%{_bindir}/ceph-bluefs-tool
|
|
|
|
%{_bindir}/ceph-objectstore-tool
|
|
|
|
%{_bindir}/ceph-osd
|
|
|
|
%{_sbindir}/ceph-disk
|
|
|
|
%{_sbindir}/ceph-disk-udev
|
|
|
|
%{_libexecdir}/ceph/ceph-osd-prestart.sh
|
2016-08-07 21:08:48 +00:00
|
|
|
%dir %{_udevrulesdir}
|
2016-07-04 05:52:03 +00:00
|
|
|
%{_udevrulesdir}/60-ceph-by-parttypeuuid.rules
|
2016-02-11 17:59:15 +00:00
|
|
|
%{_udevrulesdir}/95-ceph-osd.rules
|
|
|
|
%{_mandir}/man8/ceph-clsinfo.8*
|
|
|
|
%{_mandir}/man8/ceph-disk.8*
|
|
|
|
%{_mandir}/man8/ceph-osd.8*
|
2016-03-24 10:59:33 +00:00
|
|
|
%if 0%{?rhel} && ! 0%{?centos}
|
2015-10-11 16:27:45 +00:00
|
|
|
%{_sysconfdir}/cron.hourly/subman
|
2016-03-03 16:07:10 +00:00
|
|
|
%endif
|
2016-02-11 17:59:15 +00:00
|
|
|
%{_unitdir}/ceph-osd@.service
|
|
|
|
%{_unitdir}/ceph-osd.target
|
|
|
|
%{_unitdir}/ceph-disk@.service
|
|
|
|
%attr(750,ceph,ceph) %dir %{_localstatedir}/lib/ceph/osd
|
|
|
|
|
2016-04-19 12:48:41 +00:00
|
|
|
%post osd
|
|
|
|
%if 0%{?suse_version}
|
2016-06-27 19:16:54 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-19 12:48:41 +00:00
|
|
|
/usr/bin/systemctl preset ceph-disk@\*.service ceph-osd@\*.service ceph-osd.target >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_post ceph-disk@\*.service ceph-osd@\*.service ceph-osd.target
|
|
|
|
%endif
|
2016-06-27 18:20:27 +00:00
|
|
|
if [ $1 -eq 1 ] ; then
|
2016-04-27 16:00:08 +00:00
|
|
|
/usr/bin/systemctl start ceph-osd.target >/dev/null 2>&1 || :
|
2016-06-27 18:20:27 +00:00
|
|
|
fi
|
2016-04-19 12:48:41 +00:00
|
|
|
|
|
|
|
%preun osd
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
%service_del_preun ceph-disk@\*.service ceph-osd@\*.service ceph-osd.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_preun ceph-disk@\*.service ceph-osd@\*.service ceph-osd.target
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%postun osd
|
|
|
|
test -n "$FIRST_ARG" || FIRST_ARG=$1
|
|
|
|
%if 0%{?suse_version}
|
|
|
|
DISABLE_RESTART_ON_UPDATE="yes"
|
|
|
|
%service_del_postun ceph-disk@\*.service ceph-osd@\*.service ceph-osd.target
|
|
|
|
%endif
|
|
|
|
%if 0%{?fedora} || 0%{?rhel}
|
|
|
|
%systemd_postun ceph-disk@\*.service ceph-osd@\*.service ceph-osd.target
|
|
|
|
%endif
|
|
|
|
if [ $FIRST_ARG -ge 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.
|
2015-10-11 16:27:45 +00:00
|
|
|
SYSCONF_CEPH=%{_sysconfdir}/sysconfig/ceph
|
2016-04-19 12:48:41 +00:00
|
|
|
if [ -f $SYSCONF_CEPH -a -r $SYSCONF_CEPH ] ; then
|
|
|
|
source $SYSCONF_CEPH
|
|
|
|
fi
|
|
|
|
if [ "X$CEPH_AUTO_RESTART_ON_UPGRADE" = "Xyes" ] ; then
|
|
|
|
/usr/bin/systemctl try-restart ceph-disk@\*.service ceph-osd@\*.service > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2011-12-29 19:58:02 +00:00
|
|
|
%if %{with ocf}
|
2016-02-25 20:54:27 +00:00
|
|
|
|
2011-12-29 19:58:02 +00:00
|
|
|
%files resource-agents
|
|
|
|
%defattr(0755,root,root,-)
|
2016-02-25 20:51:36 +00:00
|
|
|
%dir %{_prefix}/lib/ocf
|
|
|
|
%dir %{_prefix}/lib/ocf/resource.d
|
|
|
|
%dir %{_prefix}/lib/ocf/resource.d/ceph
|
2016-02-25 20:54:27 +00:00
|
|
|
%{_prefix}/lib/ocf/resource.d/ceph/rbd
|
|
|
|
|
2011-12-29 19:58:02 +00:00
|
|
|
%endif
|
|
|
|
|
2011-12-15 16:51:04 +00:00
|
|
|
%files -n librados2
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/librados.so.*
|
2017-01-09 15:45:07 +00:00
|
|
|
%dir %{_libdir}/ceph
|
|
|
|
%{_libdir}/ceph/libceph-common.so
|
2016-03-01 05:51:09 +00:00
|
|
|
%if %{with lttng}
|
2015-09-29 18:30:43 +00:00
|
|
|
%{_libdir}/librados_tp.so.*
|
|
|
|
%endif
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%post -n librados2 -p /sbin/ldconfig
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%postun -n librados2 -p /sbin/ldconfig
|
2014-05-26 14:31:08 +00:00
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%files -n librados-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
%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
|
2016-11-01 22:15:33 +00:00
|
|
|
%{_includedir}/rados/inline_memory.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
|
2016-03-01 05:51:09 +00:00
|
|
|
%if %{with lttng}
|
2015-09-29 18:30:43 +00:00
|
|
|
%{_libdir}/librados_tp.so
|
|
|
|
%endif
|
2016-02-11 17:59:15 +00:00
|
|
|
%{_bindir}/librados-config
|
|
|
|
%{_mandir}/man8/librados-config.8*
|
2015-01-07 09:00:21 +00:00
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
%files -n python-rados
|
|
|
|
%defattr(-,root,root,-)
|
2016-02-16 09:42:31 +00:00
|
|
|
%{python_sitearch}/rados.so
|
|
|
|
%{python_sitearch}/rados-*.egg-info
|
2015-01-07 09:26:49 +00:00
|
|
|
|
2016-08-09 10:26:30 +00:00
|
|
|
%files -n python%{python3_pkgversion}-rados
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python3_sitearch}/rados.cpython*.so
|
|
|
|
%{python3_sitearch}/rados-*.egg-info
|
|
|
|
|
2014-05-26 14:31:08 +00:00
|
|
|
%files -n libradosstriper1
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/libradosstriper.so.*
|
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%post -n libradosstriper1 -p /sbin/ldconfig
|
2014-05-26 14:31:08 +00:00
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%postun -n libradosstriper1 -p /sbin/ldconfig
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%files -n libradosstriper-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
%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.*
|
2016-03-01 05:51:09 +00:00
|
|
|
%if %{with lttng}
|
2015-09-29 18:30:43 +00:00
|
|
|
%{_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
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%postun -n librbd1 -p /sbin/ldconfig
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%files -n librbd-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_includedir}/rbd
|
|
|
|
%{_includedir}/rbd/librbd.h
|
|
|
|
%{_includedir}/rbd/librbd.hpp
|
|
|
|
%{_includedir}/rbd/features.h
|
|
|
|
%{_libdir}/librbd.so
|
2016-03-01 05:51:09 +00:00
|
|
|
%if %{with lttng}
|
2015-09-29 18:30:43 +00:00
|
|
|
%{_libdir}/librbd_tp.so
|
|
|
|
%endif
|
2015-01-07 09:00:21 +00:00
|
|
|
|
2016-02-03 22:44:02 +00:00
|
|
|
%files -n librgw2
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/librgw.so.*
|
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%post -n librgw2 -p /sbin/ldconfig
|
2016-02-03 22:44:02 +00:00
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%postun -n librgw2 -p /sbin/ldconfig
|
2016-02-03 22:44:02 +00:00
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%files -n librgw-devel
|
2016-02-03 22:44:02 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_includedir}/rados
|
|
|
|
%{_includedir}/rados/librgw.h
|
|
|
|
%{_includedir}/rados/rgw_file.h
|
|
|
|
%{_libdir}/librgw.so
|
|
|
|
|
2016-11-09 10:49:48 +00:00
|
|
|
%files -n python-rgw
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python_sitearch}/rgw.so
|
|
|
|
%{python_sitearch}/rgw-*.egg-info
|
|
|
|
|
|
|
|
%files -n python%{python3_pkgversion}-rgw
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python3_sitearch}/rgw.cpython*.so
|
|
|
|
%{python3_sitearch}/rgw-*.egg-info
|
|
|
|
|
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
|
|
|
|
2016-08-09 10:26:30 +00:00
|
|
|
%files -n python%{python3_pkgversion}-rbd
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python3_sitearch}/rbd.cpython*.so
|
|
|
|
%{python3_sitearch}/rbd-*.egg-info
|
|
|
|
|
2016-10-24 14:03:01 +00:00
|
|
|
%files -n libcephfs2
|
2011-12-15 16:51:04 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_libdir}/libcephfs.so.*
|
|
|
|
|
2016-10-24 14:03:01 +00:00
|
|
|
%post -n libcephfs2 -p /sbin/ldconfig
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-10-24 14:03:01 +00:00
|
|
|
%postun -n libcephfs2 -p /sbin/ldconfig
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%files -n libcephfs-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_includedir}/cephfs
|
|
|
|
%{_includedir}/cephfs/libcephfs.h
|
2016-08-29 11:16:38 +00:00
|
|
|
%{_includedir}/cephfs/ceph_statx.h
|
2015-01-07 09:00:21 +00:00
|
|
|
%{_libdir}/libcephfs.so
|
|
|
|
|
2015-01-07 09:26:49 +00:00
|
|
|
%files -n python-cephfs
|
2011-12-15 16:51:04 +00:00
|
|
|
%defattr(-,root,root,-)
|
2016-02-25 14:54:05 +00:00
|
|
|
%{python_sitearch}/cephfs.so
|
|
|
|
%{python_sitearch}/cephfs-*.egg-info
|
2015-11-29 17:10:45 +00:00
|
|
|
%{python_sitelib}/ceph_volume_client.py*
|
2011-12-15 16:51:04 +00:00
|
|
|
|
2016-08-09 10:26:30 +00:00
|
|
|
%files -n python%{python3_pkgversion}-cephfs
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python3_sitearch}/cephfs.cpython*.so
|
|
|
|
%{python3_sitearch}/cephfs-*.egg-info
|
|
|
|
%{python3_sitelib}/ceph_volume_client.py
|
|
|
|
%{python3_sitelib}/__pycache__/ceph_volume_client.cpython*.py*
|
|
|
|
|
|
|
|
%files -n python%{python3_pkgversion}-ceph-argparse
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{python3_sitelib}/ceph_argparse.py
|
2016-08-19 11:16:48 +00:00
|
|
|
%{python3_sitelib}/__pycache__/ceph_argparse.cpython*.py*
|
2016-08-26 12:21:59 +00:00
|
|
|
%{python3_sitelib}/ceph_daemon.py
|
2016-08-09 10:26:30 +00:00
|
|
|
%{python3_sitelib}/__pycache__/ceph_daemon.cpython*.py*
|
|
|
|
|
2016-08-23 11:36:55 +00:00
|
|
|
%if 0%{with ceph_test_package}
|
2012-11-02 22:56:34 +00:00
|
|
|
%files -n ceph-test
|
|
|
|
%defattr(-,root,root,-)
|
2016-07-19 09:51:01 +00:00
|
|
|
%{_bindir}/ceph-client-debug
|
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
|
2016-02-11 17:59:15 +00:00
|
|
|
%{_bindir}/ceph-coverage
|
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
|
2016-02-11 17:59:15 +00:00
|
|
|
%{_bindir}/ceph-debugpack
|
|
|
|
%{_mandir}/man8/ceph-debugpack.8*
|
2015-06-23 12:30:23 +00:00
|
|
|
%dir %{_libdir}/ceph
|
|
|
|
%{_libdir}/ceph/ceph-monstore-update-crush.sh
|
2016-08-23 11:36:55 +00:00
|
|
|
%endif
|
2012-11-02 22:56:34 +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
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%post -n libcephfs_jni1 -p /sbin/ldconfig
|
2015-06-01 12:58:31 +00:00
|
|
|
|
2016-08-09 09:48:07 +00:00
|
|
|
%postun -n libcephfs_jni1 -p /sbin/ldconfig
|
2015-06-01 12:58:31 +00:00
|
|
|
|
2016-06-16 08:25:22 +00:00
|
|
|
%files -n libcephfs_jni-devel
|
2015-01-07 09:00:21 +00:00
|
|
|
%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
|
2016-05-04 07:09:47 +00:00
|
|
|
# backup file_contexts before update
|
|
|
|
. /etc/selinux/config
|
|
|
|
FILE_CONTEXT=/etc/selinux/${SELINUXTYPE}/contexts/files/file_contexts
|
|
|
|
cp ${FILE_CONTEXT} ${FILE_CONTEXT}.pre
|
|
|
|
|
2015-10-02 07:56:01 +00:00
|
|
|
# Install the policy
|
2016-05-10 16:20:13 +00:00
|
|
|
/usr/sbin/semodule -i %{_datadir}/selinux/packages/ceph.pp
|
2015-10-02 07:56:01 +00:00
|
|
|
|
|
|
|
# Load the policy if SELinux is enabled
|
2016-05-04 07:09:47 +00:00
|
|
|
if ! /usr/sbin/selinuxenabled; then
|
2015-10-02 07:56:01 +00:00
|
|
|
# Do not relabel if selinux is not enabled
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2016-05-04 07:09:47 +00:00
|
|
|
if diff ${FILE_CONTEXT} ${FILE_CONTEXT}.pre > /dev/null 2>&1; then
|
|
|
|
# Do not relabel if file contexts did not change
|
2015-10-02 07:56:01 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check whether the daemons are running
|
2015-10-11 08:02:40 +00:00
|
|
|
/usr/bin/systemctl status ceph.target > /dev/null 2>&1
|
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
|
|
|
|
/usr/bin/systemctl stop ceph.target > /dev/null 2>&1
|
|
|
|
fi
|
2015-08-17 10:48:17 +00:00
|
|
|
|
2015-10-02 07:56:01 +00:00
|
|
|
# Now, relabel the files
|
2016-05-04 07:09:47 +00:00
|
|
|
/usr/sbin/fixfiles -C ${FILE_CONTEXT}.pre restore 2> /dev/null
|
|
|
|
rm -f ${FILE_CONTEXT}.pre
|
2016-05-23 15:06:19 +00:00
|
|
|
# The fixfiles command won't fix label for /var/run/ceph
|
|
|
|
/usr/sbin/restorecon -R /var/run/ceph > /dev/null 2>&1
|
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
|
|
|
/usr/bin/systemctl start ceph.target > /dev/null 2>&1 || :
|
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
|
2016-05-04 07:09:47 +00:00
|
|
|
# backup file_contexts before update
|
|
|
|
. /etc/selinux/config
|
|
|
|
FILE_CONTEXT=/etc/selinux/${SELINUXTYPE}/contexts/files/file_contexts
|
|
|
|
cp ${FILE_CONTEXT} ${FILE_CONTEXT}.pre
|
|
|
|
|
2015-10-02 08:37:04 +00:00
|
|
|
# Remove the module
|
2016-05-20 06:09:42 +00:00
|
|
|
/usr/sbin/semodule -n -r ceph > /dev/null 2>&1
|
2015-10-02 08:37:04 +00:00
|
|
|
|
|
|
|
# Reload the policy if SELinux is enabled
|
2016-05-04 07:09:47 +00:00
|
|
|
if ! /usr/sbin/selinuxenabled ; then
|
2015-10-02 08:37:04 +00:00
|
|
|
# Do not relabel if SELinux is not enabled
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check whether the daemons are running
|
2015-10-11 08:02:40 +00:00
|
|
|
/usr/bin/systemctl status ceph.target > /dev/null 2>&1
|
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
|
|
|
|
/usr/bin/systemctl stop ceph.target > /dev/null 2>&1
|
|
|
|
fi
|
|
|
|
|
2016-05-04 07:09:47 +00:00
|
|
|
/usr/sbin/fixfiles -C ${FILE_CONTEXT}.pre restore 2> /dev/null
|
|
|
|
rm -f ${FILE_CONTEXT}.pre
|
2016-05-23 15:06:19 +00:00
|
|
|
# The fixfiles command won't fix label for /var/run/ceph
|
|
|
|
/usr/sbin/restorecon -R /var/run/ceph > /dev/null 2>&1
|
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
|
|
|
/usr/bin/systemctl start ceph.target > /dev/null 2>&1 || :
|
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: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.
|
|
|
|
|
2016-02-11 17:59:15 +00:00
|
|
|
|
2010-04-30 20:39:49 +00:00
|
|
|
%changelog
|