2013-11-22 13:26:40 +00:00
|
|
|
|
2015-10-28 14:07:49 +00:00
|
|
|
%global _hardened_build 1
|
2013-12-02 18:19:07 +00:00
|
|
|
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
2017-07-22 02:35:04 +00:00
|
|
|
BuildRequires: distribution-release
|
|
|
|
%if ( ! 0%{?is_opensuse} )
|
2016-06-20 15:17:07 +00:00
|
|
|
BuildRequires: sles-release >= 12
|
|
|
|
Requires: sles-release >= 12
|
2017-07-22 02:35:04 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: openSUSE-release
|
|
|
|
Requires: openSUSE-release
|
|
|
|
%endif
|
2016-06-20 15:17:07 +00:00
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
# Conditionally enable some FSALs, disable others.
|
|
|
|
#
|
|
|
|
# 1. rpmbuild accepts these options (gpfs as example):
|
|
|
|
# --with gpfs
|
|
|
|
# --without gpfs
|
2014-06-02 06:19:34 +00:00
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%define on_off_switch() %%{?with_%1:ON}%%{!?with_%1:OFF}
|
2014-10-02 15:47:39 +00:00
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
# A few explanation about %%bcond_with and %%bcond_without
|
|
|
|
# /!\ be careful: this syntax can be quite messy
|
|
|
|
# %%bcond_with means you add a "--with" option, default = without this feature
|
|
|
|
# %%bcond_without adds a"--without" so the feature is enabled by default
|
2014-10-02 15:47:39 +00:00
|
|
|
|
2015-09-10 18:19:12 +00:00
|
|
|
%bcond_without nullfs
|
|
|
|
%global use_fsal_null %{on_off_switch nullfs}
|
|
|
|
|
2019-11-05 12:21:24 +00:00
|
|
|
%bcond_without mem
|
2017-04-22 12:38:40 +00:00
|
|
|
%global use_fsal_mem %{on_off_switch mem}
|
|
|
|
|
2017-08-03 13:30:28 +00:00
|
|
|
%bcond_without gpfs
|
2015-05-27 14:06:45 +00:00
|
|
|
%global use_fsal_gpfs %{on_off_switch gpfs}
|
2013-11-22 13:26:40 +00:00
|
|
|
|
2018-09-20 14:31:31 +00:00
|
|
|
%bcond_with xfs
|
2015-02-13 18:23:18 +00:00
|
|
|
%global use_fsal_xfs %{on_off_switch xfs}
|
2013-11-22 13:26:40 +00:00
|
|
|
|
2018-09-17 13:01:09 +00:00
|
|
|
%bcond_with lustre
|
|
|
|
%global use_fsal_lustre %{on_off_switch lustre}
|
|
|
|
|
2019-04-05 14:10:31 +00:00
|
|
|
%ifnarch i686 armv7hl
|
2018-05-16 13:49:54 +00:00
|
|
|
%bcond_without ceph
|
2019-12-19 01:35:07 +00:00
|
|
|
%else
|
2019-04-05 14:10:31 +00:00
|
|
|
%bcond_with ceph
|
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
%global use_fsal_ceph %{on_off_switch ceph}
|
|
|
|
|
2019-04-05 14:10:31 +00:00
|
|
|
%ifnarch i686 armv7hl
|
2020-06-08 23:22:54 +00:00
|
|
|
%bcond_without rgw
|
2019-04-05 14:10:31 +00:00
|
|
|
%else
|
|
|
|
%bcond_with rgw
|
|
|
|
%endif
|
2016-03-01 02:18:28 +00:00
|
|
|
%global use_fsal_rgw %{on_off_switch rgw}
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%bcond_without gluster
|
|
|
|
%global use_fsal_gluster %{on_off_switch gluster}
|
|
|
|
|
2015-05-27 14:06:45 +00:00
|
|
|
%bcond_with panfs
|
|
|
|
%global use_fsal_panfs %{on_off_switch panfs}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%bcond_with rdma
|
|
|
|
%global use_rdma %{on_off_switch rdma}
|
|
|
|
|
2019-05-30 22:07:08 +00:00
|
|
|
%bcond_with 9P
|
|
|
|
%global use_9P %{on_off_switch 9P}
|
|
|
|
|
2016-08-16 11:49:52 +00:00
|
|
|
%bcond_with jemalloc
|
2015-02-13 18:23:18 +00:00
|
|
|
|
2019-05-30 22:07:08 +00:00
|
|
|
%bcond_with lttng
|
2015-05-27 14:06:45 +00:00
|
|
|
%global use_lttng %{on_off_switch lttng}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
2019-05-31 15:12:59 +00:00
|
|
|
%bcond_without utils
|
2015-02-13 18:23:18 +00:00
|
|
|
%global use_utils %{on_off_switch utils}
|
|
|
|
|
2019-05-31 15:12:59 +00:00
|
|
|
%bcond_without gui_utils
|
2015-03-30 11:45:15 +00:00
|
|
|
%global use_gui_utils %{on_off_switch gui_utils}
|
|
|
|
|
2015-10-12 12:32:26 +00:00
|
|
|
%bcond_without system_ntirpc
|
|
|
|
%global use_system_ntirpc %{on_off_switch system_ntirpc}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
2017-07-22 02:35:04 +00:00
|
|
|
%bcond_without man_page
|
|
|
|
%global use_man_page %{on_off_switch man_page}
|
|
|
|
|
2019-04-05 14:10:31 +00:00
|
|
|
%ifnarch i686 armv7hl
|
2017-11-13 19:28:54 +00:00
|
|
|
%bcond_without rados_recov
|
2019-04-05 14:10:31 +00:00
|
|
|
%else
|
|
|
|
%bcond_with rados_recov
|
|
|
|
%endif
|
2017-11-13 19:28:54 +00:00
|
|
|
%global use_rados_recov %{on_off_switch rados_recov}
|
|
|
|
|
2019-04-05 14:10:31 +00:00
|
|
|
%ifnarch i686 armv7hl
|
2017-11-13 19:28:54 +00:00
|
|
|
%bcond_without rados_urls
|
2019-04-05 14:10:31 +00:00
|
|
|
%else
|
|
|
|
%bcond_with rados_urls
|
|
|
|
%endif
|
2017-11-13 19:28:54 +00:00
|
|
|
%global use_rados_urls %{on_off_switch rados_urls}
|
|
|
|
|
2018-09-17 13:01:09 +00:00
|
|
|
%bcond_without rpcbind
|
|
|
|
%global use_rpcbind %{on_off_switch rpcbind}
|
|
|
|
|
|
|
|
%bcond_without mspac_support
|
|
|
|
%global use_mspac_support %{on_off_switch mspac_support}
|
|
|
|
|
2018-10-14 13:34:44 +00:00
|
|
|
%bcond_with sanitize_address
|
|
|
|
%global use_sanitize_address %{on_off_switch sanitize_address}
|
|
|
|
|
2017-08-18 17:57:40 +00:00
|
|
|
%if ( 0%{?rhel} && 0%{?rhel} < 7 )
|
|
|
|
%global _rundir %{_localstatedir}/run
|
|
|
|
%endif
|
2017-07-22 02:35:04 +00:00
|
|
|
|
2018-01-17 19:32:41 +00:00
|
|
|
%global dev_version %{lua: s = string.gsub('@GANESHA_EXTRA_VERSION@', '^%-', ''); s2 = string.gsub(s, '%-', '.'); print((s2 ~= nil and s2 ~= '') and s2 or "0.1") }
|
2019-11-12 13:56:51 +00:00
|
|
|
# %%global dev rc5
|
2017-04-22 12:38:40 +00:00
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
Name: nfs-ganesha
|
2021-01-28 19:19:07 +00:00
|
|
|
Version: 3.5
|
|
|
|
Release: 1%{?dev:%{dev}}%{?dist}
|
2015-02-13 18:23:18 +00:00
|
|
|
Summary: NFS-Ganesha is a NFS Server running in user space
|
|
|
|
License: LGPLv3+
|
|
|
|
Url: https://github.com/nfs-ganesha/nfs-ganesha/wiki
|
|
|
|
|
2019-11-06 20:25:31 +00:00
|
|
|
Source0: https://github.com/%{name}/%{name}/archive/V%{version}%{?dev:-%{dev}}/%{name}-%{version}%{?dev:-%{dev}}.tar.gz
|
2016-06-20 15:17:07 +00:00
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: cmake
|
2020-11-05 18:43:16 +00:00
|
|
|
BuildRequires: make
|
2015-10-05 12:25:25 +00:00
|
|
|
BuildRequires: bison
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: pkgconfig
|
2019-05-30 22:07:08 +00:00
|
|
|
BuildRequires: userspace-rcu-devel
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: krb5-devel
|
2019-11-03 21:45:58 +00:00
|
|
|
%if %{with rados_recov} || %{with rados_urls}
|
|
|
|
BuildRequires: librados-devel >= 0.61
|
|
|
|
%endif
|
2018-01-17 19:32:41 +00:00
|
|
|
%if ( 0%{?suse_version} >= 1330 )
|
|
|
|
BuildRequires: libnsl-devel
|
2018-09-17 13:01:09 +00:00
|
|
|
%else
|
2019-02-21 22:37:59 +00:00
|
|
|
%if ( 0%{?fedora} >= 28 || 0%{?rhel} >= 8 )
|
2018-09-17 13:01:09 +00:00
|
|
|
BuildRequires: libnsl2-devel
|
|
|
|
%endif
|
2018-01-17 19:32:41 +00:00
|
|
|
%endif
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
|
|
|
BuildRequires: dbus-1-devel
|
|
|
|
Requires: dbus-1
|
2017-02-24 20:31:02 +00:00
|
|
|
BuildRequires: systemd-rpm-macros
|
2016-06-20 15:17:07 +00:00
|
|
|
%else
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: dbus-devel
|
2016-06-20 15:17:07 +00:00
|
|
|
Requires: dbus
|
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: libcap-devel
|
|
|
|
BuildRequires: libblkid-devel
|
|
|
|
BuildRequires: libuuid-devel
|
2018-10-14 13:34:44 +00:00
|
|
|
%if ( 0%{?with_mspac_support} )
|
2018-09-17 13:01:09 +00:00
|
|
|
BuildRequires: libwbclient-devel
|
|
|
|
%endif
|
2016-10-31 13:35:03 +00:00
|
|
|
BuildRequires: gcc-c++
|
2018-10-14 13:34:44 +00:00
|
|
|
%if ( %{with_system_ntirpc} )
|
2020-12-24 13:19:55 +00:00
|
|
|
BuildRequires: libntirpc-devel = 3.4
|
2017-08-24 13:21:29 +00:00
|
|
|
%else
|
|
|
|
Requires: libntirpc = @NTIRPC_VERSION_EMBED@
|
2015-10-05 12:25:25 +00:00
|
|
|
%endif
|
2018-08-10 07:57:34 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 7
|
|
|
|
# this should effectively be a no-op, as all Red Hat Enterprise Linux installs should have it
|
|
|
|
# with selinux.
|
|
|
|
Requires: policycoreutils-python
|
|
|
|
%endif
|
2017-03-21 12:45:31 +00:00
|
|
|
%if ( 0%{?fedora} )
|
|
|
|
# this should effectively be a no-op, as all Fedora installs should have it
|
|
|
|
# with selinux.
|
2018-08-10 07:57:34 +00:00
|
|
|
Requires: policycoreutils-python-utils
|
2017-03-21 12:45:31 +00:00
|
|
|
%endif
|
2018-10-14 13:34:44 +00:00
|
|
|
%if %{with sanitize_address}
|
|
|
|
BuildRequires: libasan
|
|
|
|
%endif
|
2015-03-30 11:45:15 +00:00
|
|
|
Requires: nfs-utils
|
2018-09-17 13:01:09 +00:00
|
|
|
%if ( 0%{?with_rpcbind} )
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?fedora} ) || ( 0%{?rhel} && 0%{?rhel} >= 6 ) || ( 0%{?suse_version} )
|
2016-02-05 09:22:34 +00:00
|
|
|
Requires: rpcbind
|
2015-11-17 13:58:54 +00:00
|
|
|
%else
|
2016-02-05 09:22:34 +00:00
|
|
|
Requires: portmap
|
2015-11-17 13:58:54 +00:00
|
|
|
%endif
|
2018-09-17 13:01:09 +00:00
|
|
|
%endif
|
|
|
|
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
|
|
|
BuildRequires: nfsidmap-devel
|
|
|
|
%else
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: libnfsidmap-devel
|
2016-06-20 15:17:07 +00:00
|
|
|
%endif
|
2018-09-17 13:01:09 +00:00
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with rdma}
|
|
|
|
BuildRequires: libmooshika-devel >= 0.6-0
|
|
|
|
%endif
|
|
|
|
%if %{with jemalloc}
|
|
|
|
BuildRequires: jemalloc-devel
|
|
|
|
%endif
|
2015-10-06 22:04:41 +00:00
|
|
|
BuildRequires: systemd
|
|
|
|
Requires(post): systemd
|
2015-02-13 18:23:18 +00:00
|
|
|
Requires(preun): systemd
|
|
|
|
Requires(postun): systemd
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
2019-11-03 21:45:58 +00:00
|
|
|
%if ( 0%{?rhel} && 0%{?rhel} < 8 )
|
2017-07-22 02:35:04 +00:00
|
|
|
BuildRequires: python-sphinx
|
2019-11-03 21:45:58 +00:00
|
|
|
%else
|
|
|
|
%if ( 0%{?suse_version} )
|
|
|
|
BuildRequires: python3-Sphinx
|
|
|
|
%else
|
|
|
|
BuildRequires: python3-sphinx
|
|
|
|
%endif
|
2017-07-22 02:35:04 +00:00
|
|
|
%endif
|
2019-04-05 13:22:41 +00:00
|
|
|
%endif
|
2017-04-22 12:38:40 +00:00
|
|
|
Requires(post): psmisc
|
2020-12-24 13:19:55 +00:00
|
|
|
Requires(pre): /usr/sbin/useradd
|
|
|
|
Requires(pre): /usr/sbin/groupadd
|
2014-03-31 13:40:29 +00:00
|
|
|
|
2019-06-11 17:45:20 +00:00
|
|
|
%if ( 0%{?fedora} >= 30 || 0%{?rhel} >= 8 )
|
|
|
|
Requires: nfs-ganesha-selinux = %{version}-%{release}
|
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
# Use CMake variables
|
|
|
|
|
2014-03-31 13:40:29 +00:00
|
|
|
%description
|
2015-02-13 18:23:18 +00:00
|
|
|
nfs-ganesha : NFS-GANESHA is a NFS Server running in user space.
|
|
|
|
It comes with various back-end modules (called FSALs) provided as
|
2015-09-13 11:21:22 +00:00
|
|
|
shared objects to support different file systems and name-spaces.
|
2015-02-13 18:23:18 +00:00
|
|
|
|
2019-05-30 22:07:08 +00:00
|
|
|
%if %{with 9P}
|
2015-02-13 18:23:18 +00:00
|
|
|
%package mount-9P
|
|
|
|
Summary: a 9p mount helper
|
|
|
|
|
|
|
|
%description mount-9P
|
|
|
|
This package contains the mount.9P script that clients can use
|
|
|
|
to simplify mounting to NFS-GANESHA. This is a 9p mount helper.
|
2019-05-30 22:07:08 +00:00
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%package vfs
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA VFS FSAL
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: libattr-devel
|
2018-09-20 14:48:06 +00:00
|
|
|
Obsoletes: %{name}-xfs <= %{version}
|
2015-02-16 13:50:40 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description vfs
|
|
|
|
This package contains a FSAL shared object to
|
|
|
|
be used with NFS-Ganesha to support VFS based filesystems
|
|
|
|
|
|
|
|
%package proxy
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA PROXY FSAL
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: libattr-devel
|
2015-02-16 13:50:40 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description proxy
|
|
|
|
This package contains a FSAL shared object to
|
|
|
|
be used with NFS-Ganesha to support PROXY based filesystems
|
|
|
|
|
|
|
|
%if %{with utils}
|
|
|
|
%package utils
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA util scripts
|
2019-11-03 21:45:58 +00:00
|
|
|
%if ( 0%{?rhel} && 0%{?rhel} < 8 )
|
|
|
|
Requires: dbus-python, pygobject2, pyparsing
|
|
|
|
BuildRequires: python-devel
|
2019-05-30 22:07:08 +00:00
|
|
|
%else
|
2019-11-03 21:45:58 +00:00
|
|
|
Requires: python3-gobject, python3-pyparsing
|
2019-05-30 22:07:08 +00:00
|
|
|
BuildRequires: python3-devel
|
2020-06-23 17:14:09 +00:00
|
|
|
BuildRequires: python3-setuptools
|
2019-11-03 21:45:58 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
|
|
|
Requires: dbus-1-python
|
|
|
|
%else
|
|
|
|
Requires: python3-dbus
|
2016-06-20 15:17:07 +00:00
|
|
|
%endif
|
2020-12-24 13:19:55 +00:00
|
|
|
%endif
|
2019-11-03 21:45:58 +00:00
|
|
|
|
2015-03-30 11:45:15 +00:00
|
|
|
%if %{with gui_utils}
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
2019-11-03 21:45:58 +00:00
|
|
|
BuildRequires: python-qt5-devel
|
2016-06-20 15:17:07 +00:00
|
|
|
%else
|
2019-09-25 14:03:44 +00:00
|
|
|
%if ( 0%{?fedora} >= 31 || 0%{?rhel} >= 8 )
|
2019-12-19 02:06:44 +00:00
|
|
|
BuildRequires: python3-qt5-devel
|
2019-09-25 14:03:44 +00:00
|
|
|
%else
|
2019-11-03 21:45:58 +00:00
|
|
|
BuildRequires: PyQt4-devel
|
2015-03-30 11:45:15 +00:00
|
|
|
%endif
|
2016-06-20 15:17:07 +00:00
|
|
|
%endif
|
2019-09-25 14:03:44 +00:00
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description utils
|
|
|
|
This package contains utility scripts for managing the NFS-GANESHA server
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with lttng}
|
|
|
|
%package lttng
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA library for use with LTTng
|
2018-09-20 14:31:31 +00:00
|
|
|
BuildRequires: lttng-ust-devel >= 2.3
|
|
|
|
BuildRequires: lttng-tools-devel >= 2.3
|
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description lttng
|
|
|
|
This package contains the libganesha_trace.so library. When preloaded
|
|
|
|
to the ganesha.nfsd server, it makes it possible to trace using LTTng.
|
|
|
|
%endif
|
|
|
|
|
2017-11-13 19:28:54 +00:00
|
|
|
%if %{with rados_recov}
|
2018-09-17 13:01:09 +00:00
|
|
|
%package rados-grace
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA command for managing the RADOS grace database
|
2017-11-13 19:28:54 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
|
|
|
|
2018-09-17 13:01:09 +00:00
|
|
|
%description rados-grace
|
|
|
|
This package contains the ganesha-rados-grace tool for interacting with the
|
2019-11-03 21:45:58 +00:00
|
|
|
database used by the rados_cluster recovery backend and the
|
|
|
|
libganesha_rados_grace shared library for using RADOS storage for
|
|
|
|
recovery state.
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with rados_urls}
|
|
|
|
%package rados-urls
|
|
|
|
Summary: The NFS-GANESHA library for use with RADOS URLs
|
|
|
|
Group: Applications/System
|
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
|
|
|
|
|
|
|
%description rados-urls
|
|
|
|
This package contains the libganesha_rados_urls library used for
|
|
|
|
handling RADOS URL configurations.
|
2017-11-13 19:28:54 +00:00
|
|
|
%endif
|
|
|
|
|
2016-06-20 15:17:07 +00:00
|
|
|
# Option packages start here. use "rpmbuild --with gpfs" (or equivalent)
|
2015-02-13 18:23:18 +00:00
|
|
|
# for activating this part of the spec file
|
|
|
|
|
2015-10-05 12:25:25 +00:00
|
|
|
# NULL
|
|
|
|
%if %{with nullfs}
|
|
|
|
%package nullfs
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA NULLFS Stackable FSAL
|
2015-10-05 12:25:25 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
|
|
|
|
|
|
|
%description nullfs
|
|
|
|
This package contains a Stackable FSAL shared object to
|
|
|
|
be used with NFS-Ganesha. This is mostly a template for future (more sophisticated) stackable FSALs
|
|
|
|
%endif
|
|
|
|
|
2017-04-22 12:38:40 +00:00
|
|
|
# MEM
|
|
|
|
%if %{with mem}
|
|
|
|
%package mem
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA Memory backed testing FSAL
|
2017-04-22 12:38:40 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
|
|
|
|
|
|
|
%description mem
|
2017-07-22 02:35:04 +00:00
|
|
|
This package contains a FSAL shared object to be used with NFS-Ganesha. This
|
2017-04-22 12:38:40 +00:00
|
|
|
is used for speed and latency testing.
|
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
# GPFS
|
|
|
|
%if %{with gpfs}
|
|
|
|
%package gpfs
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA GPFS FSAL
|
2015-02-16 13:50:40 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description gpfs
|
|
|
|
This package contains a FSAL shared object to
|
|
|
|
be used with NFS-Ganesha to support GPFS backend
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# CEPH
|
|
|
|
%if %{with ceph}
|
|
|
|
%package ceph
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA CephFS FSAL
|
2015-10-06 22:04:41 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2019-03-11 16:43:35 +00:00
|
|
|
BuildRequires: libcephfs2-devel >= 12.2.0
|
2020-12-24 13:19:55 +00:00
|
|
|
BuildRequires: libacl-devel
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description ceph
|
|
|
|
This package contains a FSAL shared object to
|
2016-07-05 11:48:53 +00:00
|
|
|
be used with NFS-Ganesha to support CephFS
|
2015-02-13 18:23:18 +00:00
|
|
|
%endif
|
|
|
|
|
2016-03-01 02:18:28 +00:00
|
|
|
# RGW
|
|
|
|
%if %{with rgw}
|
|
|
|
%package rgw
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA Ceph RGW FSAL
|
2016-03-01 02:18:28 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2019-03-11 16:43:35 +00:00
|
|
|
BuildRequires: librgw2-devel >= 12.2.0
|
2016-03-01 02:18:28 +00:00
|
|
|
|
|
|
|
%description rgw
|
|
|
|
This package contains a FSAL shared object to
|
2016-07-05 11:48:53 +00:00
|
|
|
be used with NFS-Ganesha to support Ceph RGW
|
2016-03-01 02:18:28 +00:00
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
# XFS
|
|
|
|
%if %{with xfs}
|
|
|
|
%package xfs
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA XFS FSAL
|
2015-10-05 12:25:25 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2015-02-13 18:23:18 +00:00
|
|
|
BuildRequires: libattr-devel xfsprogs-devel
|
|
|
|
|
|
|
|
%description xfs
|
|
|
|
This package contains a shared object to be used with FSAL_VFS
|
|
|
|
to support XFS correctly
|
|
|
|
%endif
|
|
|
|
|
2018-09-17 13:01:09 +00:00
|
|
|
#LUSTRE
|
|
|
|
%if %{with lustre}
|
|
|
|
%package lustre
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA LUSTRE FSAL
|
2018-09-17 13:01:09 +00:00
|
|
|
BuildRequires: libattr-devel
|
|
|
|
BuildRequires: lustre-client
|
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
|
|
|
Requires: lustre-client
|
|
|
|
|
|
|
|
%description lustre
|
|
|
|
This package contains a FSAL shared object to
|
|
|
|
be used with NFS-Ganesha to support LUSTRE based filesystems
|
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
# PANFS
|
|
|
|
%if %{with panfs}
|
|
|
|
%package panfs
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA PANFS FSAL
|
2015-10-05 12:25:25 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description panfs
|
|
|
|
This package contains a FSAL shared object to
|
|
|
|
be used with NFS-Ganesha to support PANFS
|
|
|
|
%endif
|
|
|
|
|
|
|
|
# GLUSTER
|
|
|
|
%if %{with gluster}
|
|
|
|
%package gluster
|
2018-10-14 13:34:44 +00:00
|
|
|
Summary: The NFS-GANESHA GLUSTER FSAL
|
2015-10-05 12:25:25 +00:00
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
2019-11-03 21:45:58 +00:00
|
|
|
BuildRequires: glusterfs-api-devel >= 7.0
|
2015-10-28 14:07:49 +00:00
|
|
|
BuildRequires: libattr-devel, libacl-devel
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%description gluster
|
|
|
|
This package contains a FSAL shared object to
|
|
|
|
be used with NFS-Ganesha to support Gluster
|
|
|
|
%endif
|
2013-11-22 13:26:40 +00:00
|
|
|
|
2018-10-14 13:34:44 +00:00
|
|
|
# SELINUX
|
2019-02-21 22:37:59 +00:00
|
|
|
%if ( 0%{?fedora} >= 29 || 0%{?rhel} >= 8 )
|
2018-10-14 13:34:44 +00:00
|
|
|
%package selinux
|
|
|
|
Summary: The NFS-GANESHA SELINUX targeted policy
|
|
|
|
BuildArch: noarch
|
|
|
|
Requires: nfs-ganesha = %{version}-%{release}
|
|
|
|
BuildRequires: selinux-policy-devel
|
2019-02-27 15:38:50 +00:00
|
|
|
%{?selinux_requires}
|
2018-10-14 13:34:44 +00:00
|
|
|
|
|
|
|
%description selinux
|
|
|
|
This package contains an selinux policy for running ganesha.nfsd
|
|
|
|
|
|
|
|
%post selinux
|
2019-05-10 18:10:07 +00:00
|
|
|
%selinux_modules_install %{_selinux_store_path}/packages/ganesha.pp.bz2
|
2018-10-14 13:34:44 +00:00
|
|
|
|
|
|
|
%pre selinux
|
2018-12-19 13:25:47 +00:00
|
|
|
%selinux_relabel_pre
|
2018-10-14 13:34:44 +00:00
|
|
|
|
|
|
|
%postun selinux
|
|
|
|
if [ $1 -eq 0 ]; then
|
2018-12-19 13:25:47 +00:00
|
|
|
%selinux_modules_uninstall ganesha
|
2018-10-14 13:34:44 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
%posttrans
|
2018-12-19 13:25:47 +00:00
|
|
|
%selinux_relabel_post
|
2018-10-14 13:34:44 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2017-08-24 13:21:29 +00:00
|
|
|
# NTIRPC (if built-in)
|
|
|
|
%if ! %{with system_ntirpc}
|
|
|
|
%package -n libntirpc
|
|
|
|
Summary: New Transport Independent RPC Library
|
|
|
|
License: BSD
|
|
|
|
Version: @NTIRPC_VERSION_EMBED@
|
|
|
|
Url: https://github.com/nfs-ganesha/ntirpc
|
|
|
|
|
|
|
|
# libtirpc has /etc/netconfig, most machines probably have it anyway
|
|
|
|
# for NFS client
|
|
|
|
Requires: libtirpc
|
|
|
|
|
|
|
|
%description -n libntirpc
|
|
|
|
This package contains a new implementation of the original libtirpc,
|
|
|
|
transport-independent RPC (TI-RPC) library for NFS-Ganesha. It has
|
|
|
|
the following features not found in libtirpc:
|
|
|
|
1. Bi-directional operation
|
|
|
|
2. Full-duplex operation on the TCP (vc) transport
|
|
|
|
3. Thread-safe operating modes
|
|
|
|
3.1 new locking primitives and lock callouts (interface change)
|
|
|
|
3.2 stateless send/recv on the TCP transport (interface change)
|
|
|
|
4. Flexible server integration support
|
|
|
|
5. Event channels (remove static arrays of xprt handles, new EPOLL/KEVENT
|
|
|
|
integration)
|
|
|
|
|
|
|
|
%package -n libntirpc-devel
|
|
|
|
Summary: Development headers for libntirpc
|
|
|
|
Requires: libntirpc = @NTIRPC_VERSION_EMBED@
|
|
|
|
License: BSD
|
|
|
|
Version: @NTIRPC_VERSION_EMBED@
|
|
|
|
Url: https://github.com/nfs-ganesha/ntirpc
|
|
|
|
|
|
|
|
%description -n libntirpc-devel
|
|
|
|
Development headers and auxiliary files for developing with %{name}.
|
|
|
|
%endif
|
|
|
|
|
2013-11-22 13:26:40 +00:00
|
|
|
%prep
|
2019-11-06 20:25:31 +00:00
|
|
|
%setup -q -n %{name}-%{version}%{?dev:-%{dev}}
|
2013-11-22 13:26:40 +00:00
|
|
|
|
|
|
|
%build
|
2017-02-07 22:13:24 +00:00
|
|
|
cd src && %cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
2015-02-13 18:23:18 +00:00
|
|
|
-DBUILD_CONFIG=rpmbuild \
|
2015-09-10 18:19:12 +00:00
|
|
|
-DUSE_FSAL_NULL=%{use_fsal_null} \
|
2017-04-22 12:38:40 +00:00
|
|
|
-DUSE_FSAL_MEM=%{use_fsal_mem} \
|
2015-02-13 18:23:18 +00:00
|
|
|
-DUSE_FSAL_XFS=%{use_fsal_xfs} \
|
2018-09-17 13:01:09 +00:00
|
|
|
-DUSE_FSAL_LUSTRE=%{use_fsal_lustre} \
|
2015-02-13 18:23:18 +00:00
|
|
|
-DUSE_FSAL_CEPH=%{use_fsal_ceph} \
|
2016-06-20 15:17:07 +00:00
|
|
|
-DUSE_FSAL_RGW=%{use_fsal_rgw} \
|
2015-02-13 18:23:18 +00:00
|
|
|
-DUSE_FSAL_GPFS=%{use_fsal_gpfs} \
|
|
|
|
-DUSE_FSAL_PANFS=%{use_fsal_panfs} \
|
|
|
|
-DUSE_FSAL_GLUSTER=%{use_fsal_gluster} \
|
2015-10-12 12:32:26 +00:00
|
|
|
-DUSE_SYSTEM_NTIRPC=%{use_system_ntirpc} \
|
2015-02-13 18:23:18 +00:00
|
|
|
-DUSE_9P_RDMA=%{use_rdma} \
|
|
|
|
-DUSE_LTTNG=%{use_lttng} \
|
|
|
|
-DUSE_ADMIN_TOOLS=%{use_utils} \
|
2015-03-30 11:45:15 +00:00
|
|
|
-DUSE_GUI_ADMIN_TOOLS=%{use_gui_utils} \
|
2017-11-13 19:28:54 +00:00
|
|
|
-DUSE_RADOS_RECOV=%{use_rados_recov} \
|
|
|
|
-DRADOS_URLS=%{use_rados_urls} \
|
2015-02-13 18:23:18 +00:00
|
|
|
-DUSE_FSAL_VFS=ON \
|
|
|
|
-DUSE_FSAL_PROXY=ON \
|
|
|
|
-DUSE_DBUS=ON \
|
2019-05-30 22:07:08 +00:00
|
|
|
-DUSE_9P=%{use_9P} \
|
2015-02-13 18:23:18 +00:00
|
|
|
-DDISTNAME_HAS_GIT_DATA=OFF \
|
2017-07-22 02:35:04 +00:00
|
|
|
-DUSE_MAN_PAGE=%{use_man_page} \
|
2018-10-14 13:34:44 +00:00
|
|
|
-DRPCBIND=%{use_rpcbind} \
|
|
|
|
-D_MSPAC_SUPPORT=%{use_mspac_support} \
|
|
|
|
-DSANITIZE_ADDRESS=%{use_sanitize_address} \
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with jemalloc}
|
|
|
|
-DALLOCATOR=jemalloc
|
2014-10-02 15:47:39 +00:00
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
2020-07-20 22:50:27 +00:00
|
|
|
export VERBOSE=1
|
|
|
|
%cmake_build
|
2013-11-22 13:26:40 +00:00
|
|
|
|
2018-10-14 13:34:44 +00:00
|
|
|
%if ( 0%{?fedora} >= 30 || 0%{?rhel} >= 8 )
|
|
|
|
make -C selinux -f /usr/share/selinux/devel/Makefile ganesha.pp
|
|
|
|
pushd selinux && bzip2 -9 ganesha.pp && popd
|
|
|
|
%endif
|
|
|
|
|
2013-11-22 13:26:40 +00:00
|
|
|
%install
|
2015-02-13 18:23:18 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/ganesha/
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/dbus-1/system.d
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
|
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/logrotate.d
|
|
|
|
mkdir -p %{buildroot}%{_bindir}
|
|
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
|
|
mkdir -p %{buildroot}%{_libdir}/ganesha
|
2017-08-18 17:57:40 +00:00
|
|
|
mkdir -p %{buildroot}%{_rundir}/ganesha
|
2016-02-05 09:22:34 +00:00
|
|
|
mkdir -p %{buildroot}%{_libexecdir}/ganesha
|
2015-10-06 22:04:41 +00:00
|
|
|
cd src
|
|
|
|
install -m 644 config_samples/logrotate_ganesha %{buildroot}%{_sysconfdir}/logrotate.d/ganesha
|
|
|
|
install -m 644 scripts/ganeshactl/org.ganesha.nfsd.conf %{buildroot}%{_sysconfdir}/dbus-1/system.d
|
2016-02-05 09:22:34 +00:00
|
|
|
install -m 755 scripts/nfs-ganesha-config.sh %{buildroot}%{_libexecdir}/ganesha
|
2019-05-30 22:07:08 +00:00
|
|
|
%if %{with 9P}
|
2015-10-06 22:04:41 +00:00
|
|
|
install -m 755 tools/mount.9P %{buildroot}%{_sbindir}/mount.9P
|
2019-05-30 22:07:08 +00:00
|
|
|
%endif
|
2015-10-06 22:04:41 +00:00
|
|
|
install -m 644 config_samples/vfs.conf %{buildroot}%{_sysconfdir}/ganesha
|
2016-06-24 17:19:30 +00:00
|
|
|
%if %{with rgw}
|
|
|
|
install -m 644 config_samples/rgw.conf %{buildroot}%{_sysconfdir}/ganesha
|
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
mkdir -p %{buildroot}%{_unitdir}
|
2020-06-08 23:22:54 +00:00
|
|
|
%if ( 0%{?fedora} ) || ( 0%{?rhel} && 0%{?rhel} >= 8 )
|
2020-06-18 17:05:47 +00:00
|
|
|
mkdir -p %{buildroot}%{_sysconfdir}/systemd/system/nfs-ganesha-lock.service.d
|
2020-06-08 23:22:54 +00:00
|
|
|
%endif
|
|
|
|
|
2017-07-22 02:35:04 +00:00
|
|
|
install -m 644 scripts/systemd/nfs-ganesha.service.el7 %{buildroot}%{_unitdir}/nfs-ganesha.service
|
2020-06-08 23:22:54 +00:00
|
|
|
%if ( 0%{?fedora} ) || ( 0%{?rhel} && 0%{?rhel} >= 8 )
|
|
|
|
install -m 644 scripts/systemd/nfs-ganesha-lock.service.el8 %{buildroot}%{_unitdir}/nfs-ganesha-lock.service
|
2020-06-18 17:05:47 +00:00
|
|
|
install -m 644 scripts/systemd/rpc-statd.conf.el8 %{buildroot}%{_sysconfdir}/systemd/system/nfs-ganesha-lock.service.d/rpc-statd.conf
|
2020-06-08 23:22:54 +00:00
|
|
|
%else
|
2017-10-10 13:49:19 +00:00
|
|
|
install -m 644 scripts/systemd/nfs-ganesha-lock.service.el7 %{buildroot}%{_unitdir}/nfs-ganesha-lock.service
|
2020-06-08 23:22:54 +00:00
|
|
|
%endif
|
2016-02-05 09:22:34 +00:00
|
|
|
install -m 644 scripts/systemd/nfs-ganesha-config.service %{buildroot}%{_unitdir}/nfs-ganesha-config.service
|
2015-10-06 22:04:41 +00:00
|
|
|
install -m 644 scripts/systemd/sysconfig/nfs-ganesha %{buildroot}%{_sysconfdir}/sysconfig/ganesha
|
2017-05-08 10:44:21 +00:00
|
|
|
mkdir -p %{buildroot}%{_localstatedir}/log/ganesha
|
2015-02-13 18:23:18 +00:00
|
|
|
|
2018-09-17 13:01:09 +00:00
|
|
|
%if %{with lustre}
|
|
|
|
install -m 644 config_samples/lustre.conf %{buildroot}%{_sysconfdir}/ganesha
|
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with xfs}
|
2015-10-06 22:04:41 +00:00
|
|
|
install -m 644 config_samples/xfs.conf %{buildroot}%{_sysconfdir}/ganesha
|
2014-01-02 16:20:03 +00:00
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%if %{with ceph}
|
2015-10-06 22:04:41 +00:00
|
|
|
install -m 644 config_samples/ceph.conf %{buildroot}%{_sysconfdir}/ganesha
|
2015-02-13 18:23:18 +00:00
|
|
|
%endif
|
|
|
|
|
2017-04-22 12:38:40 +00:00
|
|
|
%if %{with rgw}
|
|
|
|
install -m 644 config_samples/rgw.conf %{buildroot}%{_sysconfdir}/ganesha
|
|
|
|
install -m 644 config_samples/rgw_bucket.conf %{buildroot}%{_sysconfdir}/ganesha
|
|
|
|
%endif
|
|
|
|
|
2016-04-08 12:52:46 +00:00
|
|
|
%if %{with gluster}
|
|
|
|
install -m 644 config_samples/logrotate_fsal_gluster %{buildroot}%{_sysconfdir}/logrotate.d/ganesha-gfapi
|
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with gpfs}
|
2015-10-06 22:04:41 +00:00
|
|
|
install -m 644 config_samples/gpfs.conf %{buildroot}%{_sysconfdir}/ganesha
|
2015-10-05 12:25:25 +00:00
|
|
|
install -m 644 config_samples/gpfs.ganesha.nfsd.conf %{buildroot}%{_sysconfdir}/ganesha
|
|
|
|
install -m 644 config_samples/gpfs.ganesha.main.conf %{buildroot}%{_sysconfdir}/ganesha
|
|
|
|
install -m 644 config_samples/gpfs.ganesha.log.conf %{buildroot}%{_sysconfdir}/ganesha
|
|
|
|
install -m 644 config_samples/gpfs.ganesha.exports.conf %{buildroot}%{_sysconfdir}/ganesha
|
2015-02-13 18:23:18 +00:00
|
|
|
%endif
|
|
|
|
|
2020-07-20 22:50:27 +00:00
|
|
|
%cmake_install
|
2013-11-22 13:26:40 +00:00
|
|
|
|
2018-10-14 13:34:44 +00:00
|
|
|
%if ( 0%{?fedora} >= 30 || 0%{?rhel} >= 8 )
|
2018-12-19 13:25:47 +00:00
|
|
|
install -d %{buildroot}%{_selinux_store_path}/packages
|
|
|
|
install -d -p %{buildroot}%{_selinux_store_path}/devel/include/contrib
|
|
|
|
install -p -m 644 selinux/ganesha.if %{buildroot}%{_selinux_store_path}/devel/include/contrib
|
|
|
|
install -m 0644 selinux/ganesha.pp.bz2 %{buildroot}%{_selinux_store_path}/packages
|
2018-10-14 13:34:44 +00:00
|
|
|
%endif
|
2015-10-28 16:38:54 +00:00
|
|
|
|
2019-11-03 21:45:58 +00:00
|
|
|
%if ( 0%{?rhel} && 0%{?rhel} < 8 )
|
|
|
|
rm -f %{buildroot}/%{python_sitelib}/gpfs*
|
|
|
|
rm -f %{buildroot}/%{python_sitelib}/__init__.*
|
|
|
|
%else
|
|
|
|
rm -f %{buildroot}/%{python3_sitelib}/gpfs*
|
|
|
|
rm -f %{buildroot}/%{python3_sitelib}/__init__.*
|
|
|
|
%endif
|
|
|
|
|
2013-11-22 13:26:40 +00:00
|
|
|
%post
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
|
|
|
%service_add_post nfs-ganesha.service nfs-ganesha-lock.service nfs-ganesha-config.service
|
2017-10-20 16:47:58 +00:00
|
|
|
%else
|
2017-10-10 13:49:19 +00:00
|
|
|
%if ( 0%{?fedora} || ( 0%{?rhel} && 0%{?rhel} > 6 ) )
|
2017-10-20 16:54:58 +00:00
|
|
|
semanage fcontext -a -t ganesha_var_log_t %{_localstatedir}/log/ganesha > /dev/null 2>&1 || :
|
|
|
|
semanage fcontext -a -t ganesha_var_log_t %{_localstatedir}/log/ganesha/ganesha.log > /dev/null 2>&1 || :
|
2017-10-10 13:49:19 +00:00
|
|
|
%if %{with gluster}
|
2017-10-20 16:54:58 +00:00
|
|
|
semanage fcontext -a -t ganesha_var_log_t %{_localstatedir}/log/ganesha/ganesha-gfapi.log > /dev/null 2>&1 || :
|
2017-10-10 13:49:19 +00:00
|
|
|
%endif
|
|
|
|
restorecon %{_localstatedir}/log/ganesha
|
|
|
|
%endif
|
2013-11-22 13:26:40 +00:00
|
|
|
%systemd_post nfs-ganesha.service
|
2015-02-13 18:23:18 +00:00
|
|
|
%systemd_post nfs-ganesha-lock.service
|
2016-02-05 09:22:34 +00:00
|
|
|
%systemd_post nfs-ganesha-config.service
|
2014-01-02 16:20:03 +00:00
|
|
|
%endif
|
2017-04-22 12:38:40 +00:00
|
|
|
killall -SIGHUP dbus-daemon >/dev/null 2>&1 || :
|
2013-11-22 13:26:40 +00:00
|
|
|
|
2017-05-08 10:44:21 +00:00
|
|
|
%pre
|
|
|
|
getent group ganesha > /dev/null || groupadd -r ganesha
|
2017-08-18 17:57:40 +00:00
|
|
|
getent passwd ganesha > /dev/null || useradd -r -g ganesha -d %{_rundir}/ganesha -s /sbin/nologin -c "NFS-Ganesha Daemon" ganesha
|
2017-05-08 10:44:21 +00:00
|
|
|
exit 0
|
|
|
|
|
2013-11-22 13:26:40 +00:00
|
|
|
%preun
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
|
|
|
%service_del_preun nfs-ganesha-lock.service
|
|
|
|
%else
|
2015-02-13 18:23:18 +00:00
|
|
|
%systemd_preun nfs-ganesha-lock.service
|
2014-01-02 16:20:03 +00:00
|
|
|
%endif
|
2013-11-22 13:26:40 +00:00
|
|
|
|
|
|
|
%postun
|
2016-06-20 15:17:07 +00:00
|
|
|
%if ( 0%{?suse_version} )
|
|
|
|
%service_del_postun nfs-ganesha-lock.service
|
2017-07-22 02:35:04 +00:00
|
|
|
%debug_package
|
2016-06-20 15:17:07 +00:00
|
|
|
%else
|
2015-02-13 18:23:18 +00:00
|
|
|
%systemd_postun_with_restart nfs-ganesha-lock.service
|
2014-01-02 16:20:03 +00:00
|
|
|
%endif
|
2013-11-22 13:26:40 +00:00
|
|
|
|
|
|
|
%files
|
2015-05-15 12:26:03 +00:00
|
|
|
%license src/LICENSE.txt
|
2015-02-13 18:23:18 +00:00
|
|
|
%{_bindir}/ganesha.nfsd
|
2019-05-30 22:07:08 +00:00
|
|
|
%{_libdir}/libganesha_nfsd.so*
|
2015-02-13 18:23:18 +00:00
|
|
|
%config %{_sysconfdir}/dbus-1/system.d/org.ganesha.nfsd.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/sysconfig/ganesha
|
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/ganesha
|
|
|
|
%dir %{_sysconfdir}/ganesha/
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/ganesha.conf
|
2016-06-24 17:19:30 +00:00
|
|
|
%doc src/ChangeLog
|
2017-08-18 17:57:40 +00:00
|
|
|
%dir %{_rundir}/ganesha
|
2016-02-05 09:22:34 +00:00
|
|
|
%dir %{_libexecdir}/ganesha/
|
|
|
|
%{_libexecdir}/ganesha/nfs-ganesha-config.sh
|
2020-02-20 21:48:26 +00:00
|
|
|
%dir %attr(0755,ganesha,ganesha) %{_localstatedir}/log/ganesha
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%{_unitdir}/nfs-ganesha.service
|
|
|
|
%{_unitdir}/nfs-ganesha-lock.service
|
2016-02-05 09:22:34 +00:00
|
|
|
%{_unitdir}/nfs-ganesha-config.service
|
2020-06-08 23:22:54 +00:00
|
|
|
%if ( 0%{?fedora} ) || ( 0%{?rhel} && 0%{?rhel} >= 8 )
|
2020-06-18 17:05:47 +00:00
|
|
|
%{_sysconfdir}/systemd/system/nfs-ganesha-lock.service.d/rpc-statd.conf
|
2014-01-02 16:20:03 +00:00
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-config.8.gz
|
|
|
|
%{_mandir}/*/ganesha-core-config.8.gz
|
|
|
|
%{_mandir}/*/ganesha-export-config.8.gz
|
|
|
|
%{_mandir}/*/ganesha-cache-config.8.gz
|
|
|
|
%{_mandir}/*/ganesha-log-config.8.gz
|
|
|
|
%endif
|
|
|
|
|
2018-09-17 13:01:09 +00:00
|
|
|
%if %{with rados_recov}
|
|
|
|
%files rados-grace
|
|
|
|
%{_bindir}/ganesha-rados-grace
|
2019-11-03 21:45:58 +00:00
|
|
|
%{_libdir}/libganesha_rados_recov.so*
|
2018-09-17 13:01:09 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-rados-grace.8.gz
|
|
|
|
%{_mandir}/*/ganesha-rados-cluster-design.8.gz
|
|
|
|
%endif
|
|
|
|
%endif
|
2017-07-22 02:35:04 +00:00
|
|
|
|
2019-11-03 21:45:58 +00:00
|
|
|
%if %{with rados_urls}
|
|
|
|
%files rados-urls
|
|
|
|
%{_libdir}/libganesha_rados_urls.so*
|
|
|
|
%endif
|
|
|
|
|
2019-05-30 22:07:08 +00:00
|
|
|
%if %{with 9P}
|
2015-02-13 18:23:18 +00:00
|
|
|
%files mount-9P
|
|
|
|
%{_sbindir}/mount.9P
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-9p-config.8.gz
|
|
|
|
%endif
|
2019-05-30 22:07:08 +00:00
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%files vfs
|
|
|
|
%{_libdir}/ganesha/libfsalvfs*
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/vfs.conf
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-vfs-config.8.gz
|
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
%files proxy
|
|
|
|
%{_libdir}/ganesha/libfsalproxy*
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-proxy-config.8.gz
|
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
|
|
|
|
# Optional packages
|
2018-09-17 13:01:09 +00:00
|
|
|
%if %{with lustre}
|
|
|
|
%files lustre
|
|
|
|
%{_libdir}/ganesha/libfsallustre*
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/lustre.conf
|
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-lustre-config.8.gz
|
|
|
|
%endif
|
|
|
|
%endif
|
|
|
|
|
2015-09-10 18:19:12 +00:00
|
|
|
%if %{with nullfs}
|
|
|
|
%files nullfs
|
|
|
|
%{_libdir}/ganesha/libfsalnull*
|
|
|
|
%endif
|
|
|
|
|
2017-04-22 12:38:40 +00:00
|
|
|
%if %{with mem}
|
|
|
|
%files mem
|
|
|
|
%{_libdir}/ganesha/libfsalmem*
|
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with gpfs}
|
|
|
|
%files gpfs
|
|
|
|
%{_libdir}/ganesha/libfsalgpfs*
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/gpfs.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/gpfs.ganesha.nfsd.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/gpfs.ganesha.main.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/gpfs.ganesha.log.conf
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/gpfs.ganesha.exports.conf
|
2016-03-01 02:18:28 +00:00
|
|
|
%{_libexecdir}/ganesha/gpfs-epoch
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-gpfs-config.8.gz
|
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with xfs}
|
|
|
|
%files xfs
|
|
|
|
%{_libdir}/ganesha/libfsalxfs*
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/xfs.conf
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-xfs-config.8.gz
|
|
|
|
%endif
|
2014-10-02 15:47:39 +00:00
|
|
|
%endif
|
2013-11-22 13:26:40 +00:00
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with ceph}
|
|
|
|
%files ceph
|
|
|
|
%{_libdir}/ganesha/libfsalceph*
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/ceph.conf
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-ceph-config.8.gz
|
|
|
|
%endif
|
2014-03-31 13:40:29 +00:00
|
|
|
%endif
|
|
|
|
|
2016-03-01 02:18:28 +00:00
|
|
|
%if %{with rgw}
|
|
|
|
%files rgw
|
|
|
|
%{_libdir}/ganesha/libfsalrgw*
|
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/rgw.conf
|
2017-04-22 12:38:40 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/ganesha/rgw_bucket.conf
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-rgw-config.8.gz
|
|
|
|
%endif
|
2016-03-01 02:18:28 +00:00
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with gluster}
|
|
|
|
%files gluster
|
2016-04-08 12:52:46 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/ganesha-gfapi
|
2015-02-13 18:23:18 +00:00
|
|
|
%{_libdir}/ganesha/libfsalgluster*
|
2017-07-22 02:35:04 +00:00
|
|
|
%if %{with man_page}
|
|
|
|
%{_mandir}/*/ganesha-gluster-config.8.gz
|
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
%endif
|
|
|
|
|
2018-10-14 13:34:44 +00:00
|
|
|
%if ( 0%{?fedora} >= 30 || 0%{?rhel} >= 8 )
|
|
|
|
%files selinux
|
2018-12-19 13:25:47 +00:00
|
|
|
%attr(0644,root,root) %{_selinux_store_path}/packages/ganesha.pp.bz2
|
|
|
|
%attr(0644,root,root) %{_selinux_store_path}/devel/include/contrib/ganesha.if
|
2018-10-14 13:34:44 +00:00
|
|
|
%endif
|
|
|
|
|
2017-08-24 13:21:29 +00:00
|
|
|
%if ! %{with system_ntirpc}
|
|
|
|
%files -n libntirpc
|
|
|
|
%{_libdir}/libntirpc.so.@NTIRPC_VERSION_EMBED@
|
2018-01-17 19:32:41 +00:00
|
|
|
%{_libdir}/libntirpc.so.1.6
|
2017-08-24 13:21:29 +00:00
|
|
|
%{_libdir}/libntirpc.so
|
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license libntirpc/COPYING
|
|
|
|
%doc libntirpc/NEWS libntirpc/README
|
|
|
|
%files -n libntirpc-devel
|
|
|
|
%{_libdir}/pkgconfig/libntirpc.pc
|
|
|
|
%dir %{_includedir}/ntirpc
|
|
|
|
%{_includedir}/ntirpc/*
|
|
|
|
%endif
|
|
|
|
|
2015-02-13 18:23:18 +00:00
|
|
|
%if %{with panfs}
|
|
|
|
%files panfs
|
|
|
|
%{_libdir}/ganesha/libfsalpanfs*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with lttng}
|
|
|
|
%files lttng
|
|
|
|
%{_libdir}/ganesha/libganesha_trace*
|
|
|
|
%endif
|
|
|
|
|
|
|
|
%if %{with utils}
|
|
|
|
%files utils
|
2019-11-03 21:45:58 +00:00
|
|
|
%if ( 0%{?rhel} && 0%{?rhel} < 8 )
|
|
|
|
%{python_sitelib}/Ganesha/*
|
|
|
|
%{python_sitelib}/ganeshactl-*-info
|
2016-06-20 15:17:07 +00:00
|
|
|
%else
|
2019-05-30 22:07:08 +00:00
|
|
|
%{python3_sitelib}/Ganesha/*
|
|
|
|
%{python3_sitelib}/ganeshactl-*-info
|
|
|
|
%endif
|
2015-03-30 11:45:15 +00:00
|
|
|
%if %{with gui_utils}
|
2015-02-13 18:23:18 +00:00
|
|
|
%{_bindir}/ganesha-admin
|
|
|
|
%{_bindir}/manage_clients
|
|
|
|
%{_bindir}/manage_exports
|
|
|
|
%{_bindir}/manage_logger
|
|
|
|
%{_bindir}/ganeshactl
|
2019-05-30 22:07:08 +00:00
|
|
|
%if %{with 9P}
|
2015-10-05 12:25:25 +00:00
|
|
|
%{_bindir}/client_stats_9pOps
|
|
|
|
%{_bindir}/export_stats_9pOps
|
2019-05-31 15:12:59 +00:00
|
|
|
%else
|
|
|
|
%exclude %{_bindir}/client_stats_9pOps
|
|
|
|
%exclude %{_bindir}/export_stats_9pOps
|
2015-03-30 11:45:15 +00:00
|
|
|
%endif
|
2019-05-30 22:07:08 +00:00
|
|
|
%endif
|
2015-02-13 18:23:18 +00:00
|
|
|
%{_bindir}/fake_recall
|
|
|
|
%{_bindir}/get_clientids
|
|
|
|
%{_bindir}/grace_period
|
|
|
|
%{_bindir}/ganesha_stats
|
|
|
|
%{_bindir}/sm_notify.ganesha
|
|
|
|
%{_bindir}/ganesha_mgr
|
2017-04-22 12:38:40 +00:00
|
|
|
%{_bindir}/ganesha_conf
|
2017-07-22 02:35:04 +00:00
|
|
|
%{_mandir}/*/ganesha_conf.8.gz
|
2015-02-13 18:23:18 +00:00
|
|
|
%endif
|
2013-11-22 13:26:40 +00:00
|
|
|
|
|
|
|
%changelog
|
2021-01-28 19:19:07 +00:00
|
|
|
* Thu Jan 28 2021 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.5-1
|
|
|
|
- NFS-Ganesha 3.5 GA
|
|
|
|
- fix for compiling with Ceph-16 (pacific)
|
|
|
|
|
2020-12-24 13:19:55 +00:00
|
|
|
* Wed Dec 23 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.4-1
|
|
|
|
- NFS-Ganesha 3.4 GA
|
|
|
|
|
2020-11-05 18:43:16 +00:00
|
|
|
* Thu Nov 5 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.3-8
|
|
|
|
- BuildRequires: make
|
|
|
|
|
|
|
|
* Tue Sep 8 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.3-7
|
|
|
|
- selinux
|
|
|
|
|
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org>
|
2020-07-28 09:08:01 +00:00
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-20 22:50:27 +00:00
|
|
|
* Mon Jul 20 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.3-6
|
|
|
|
- use cmake_build and %cmake_install
|
|
|
|
|
2020-07-20 21:17:06 +00:00
|
|
|
* Mon Jul 20 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.3-5
|
|
|
|
- use %make_install
|
|
|
|
|
2020-07-13 12:31:14 +00:00
|
|
|
* Mon Jul 13 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.3-4
|
|
|
|
- rpc-statd.conf.el8
|
|
|
|
|
2020-06-23 17:14:09 +00:00
|
|
|
* Tue Jun 23 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- explicit BuildRequires: python3-setuptools
|
|
|
|
|
2020-06-18 17:05:47 +00:00
|
|
|
* Thu Jun 18 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.3-3
|
2020-06-18 13:50:32 +00:00
|
|
|
- rhbz#1848208
|
|
|
|
|
2020-06-08 23:22:54 +00:00
|
|
|
* Mon Jun 8 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.3-1
|
|
|
|
- NFS-Ganesha 3.3 GA
|
|
|
|
|
2020-05-26 00:54:07 +00:00
|
|
|
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 3.2-6
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-03-23 15:23:00 +00:00
|
|
|
* Mon Mar 23 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.2-5
|
|
|
|
- NFS-Ganesha 3.2, NFSv4-compound-op-fails SEGV
|
|
|
|
|
2020-02-20 21:48:26 +00:00
|
|
|
* Thu Feb 20 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.2-4
|
|
|
|
- NFS-Ganesha 3.2, /var/log/ganesha, rhbz#1805493
|
|
|
|
|
2020-01-29 14:57:14 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2020-01-23 12:22:29 +00:00
|
|
|
* Thu Jan 23 2020 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.2-2
|
|
|
|
- NFS-Ganesha 3.2, gcc-10
|
|
|
|
|
2019-12-22 13:43:35 +00:00
|
|
|
* Sun Dec 22 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.2-1
|
|
|
|
- NFS-Ganesha 3.2 GA
|
|
|
|
- 3.1 was not built
|
|
|
|
|
2019-11-12 13:56:51 +00:00
|
|
|
* Mon Nov 11 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.0-1
|
|
|
|
- NFS-Ganesha 3.0 GA
|
|
|
|
|
2019-11-06 20:25:31 +00:00
|
|
|
* Wed Nov 6 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.0-0.3rc5
|
|
|
|
- nfs-ganesha 3.0 RC5, rebuild w/ libntirpc-3.0 GA
|
|
|
|
|
2019-11-05 12:21:24 +00:00
|
|
|
* Tue Nov 5 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.0-0.2rc5
|
|
|
|
- nfs-ganesha 3.0 RC5, enable fsal_mem (again)
|
|
|
|
|
2019-11-03 21:45:58 +00:00
|
|
|
* Sun Nov 3 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 3.0-0.1rc5
|
|
|
|
- nfs-ganesha 3.0 RC5
|
|
|
|
|
2019-09-25 14:03:44 +00:00
|
|
|
* Wed Sep 25 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.2-4
|
|
|
|
- PyQt4 -> PyQt5
|
|
|
|
|
2019-08-19 17:11:32 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.8.2-3
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-19 08:20:44 +00:00
|
|
|
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.8.2-2
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-14 14:21:57 +00:00
|
|
|
* Wed Aug 14 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.2-1
|
|
|
|
- nfs-ganesha 2.8.2 (f32/rawhide)
|
|
|
|
|
2019-08-14 14:04:31 +00:00
|
|
|
* Wed Aug 14 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.2-4
|
|
|
|
- nfs-ganesha 2.8.2, #1741023
|
|
|
|
|
2019-07-25 18:38:21 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.8.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-23 15:45:27 +00:00
|
|
|
* Tue Jul 23 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.2-2
|
2019-07-23 11:53:25 +00:00
|
|
|
- nfs-ganesha 2.8.2 GA
|
|
|
|
|
2019-07-02 20:28:32 +00:00
|
|
|
* Tue Jul 2 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.1-1
|
|
|
|
- nfs-ganesha 2.8.1 GA
|
|
|
|
|
2019-07-01 11:52:02 +00:00
|
|
|
* Mon Jul 1 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.0-4
|
|
|
|
- nfs-ganesha 2.8.0, 2.8.0.3
|
|
|
|
|
2019-06-16 15:26:49 +00:00
|
|
|
* Sun Jun 16 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.0-3
|
|
|
|
- nfs-ganesha 2.8.0, 2.8.0.2
|
|
|
|
|
2019-06-11 17:45:20 +00:00
|
|
|
* Tue Jun 11 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.0-2
|
|
|
|
- nfs-ganesha 2.8.0, 2.8.0.1
|
|
|
|
|
2019-06-01 12:24:22 +00:00
|
|
|
* Fri May 31 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.0-1
|
|
|
|
- nfs-ganesha 2.8.0 GA
|
|
|
|
|
2019-05-31 15:12:59 +00:00
|
|
|
* Fri May 31 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.0-0.2rc1
|
|
|
|
- nfs-ganesha 2.8.0 RC1, utils and gui_utils enabled
|
|
|
|
|
2019-05-30 22:07:08 +00:00
|
|
|
* Thu May 30 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.8.0-0.1rc1
|
|
|
|
- nfs-ganesha 2.8.0 RC1, utils and gui_utils disabled until the python
|
|
|
|
byte_compile problems can be resolved
|
|
|
|
|
2019-05-17 20:46:11 +00:00
|
|
|
* Fri May 17 2019 Miro Hrončok <mhroncok@redhat.com> - 2.7.3-4
|
|
|
|
- Avoid unversioned Python requires
|
|
|
|
|
2019-05-16 15:37:31 +00:00
|
|
|
* Thu May 16 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.3-3
|
|
|
|
- nfs-ganesha 2.7.3, enable utils w/ python2 on f30 and up
|
|
|
|
|
2019-05-10 18:10:07 +00:00
|
|
|
* Fri May 10 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.3-2
|
|
|
|
- nfs-ganesha 2.7.3, selinux bz#1706462
|
|
|
|
|
2019-04-05 13:22:41 +00:00
|
|
|
* Fri Apr 5 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.3-1
|
|
|
|
- nfs-ganesha 2.7.3 GA
|
|
|
|
|
2019-03-11 16:37:16 +00:00
|
|
|
* Mon Mar 11 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.2-2
|
|
|
|
- nfs-ganesha 2.7.2 reenable ceph, rgw, rados from bad merge
|
|
|
|
|
2019-02-27 15:38:50 +00:00
|
|
|
* Wed Feb 27 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.2-1
|
|
|
|
- nfs-ganesha 2.7.2 GA
|
|
|
|
|
2019-02-21 22:37:59 +00:00
|
|
|
* Thu Feb 21 2019 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.1-1
|
|
|
|
- rebuild for f31/rawhide
|
|
|
|
- add libnsl2-devel on rhel8
|
|
|
|
- eliminate redundant cmake -DDSANITIZE_ADDRESS=OFF
|
|
|
|
|
2019-02-01 12:19:18 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.7.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-12-19 13:25:47 +00:00
|
|
|
* Tue Dec 18 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.1-4
|
|
|
|
- nfs-ganesha 2.7.1, fix selinux
|
|
|
|
|
2018-12-07 19:37:57 +00:00
|
|
|
* Fri Dec 7 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.1-3
|
|
|
|
- nfs-ganesha 2.7.1, rebuild w/ ceph-14
|
|
|
|
|
2018-10-16 15:08:34 +00:00
|
|
|
* Tue Oct 16 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.1-2
|
|
|
|
- nfs-ganesha 2.7.1, rebuild w/ libntirpc-1.7.1-1
|
|
|
|
|
2018-10-14 13:34:44 +00:00
|
|
|
* Fri Oct 12 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.1-1
|
|
|
|
- nfs-ganesha 2.7.1 GA
|
|
|
|
|
2018-09-20 14:48:06 +00:00
|
|
|
* Thu Sep 20 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.0-3
|
|
|
|
- nfs-ganesha 2.7.0, obsolete xfs, enable lttng
|
|
|
|
|
2018-09-20 14:31:31 +00:00
|
|
|
* Thu Sep 20 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.0-2
|
|
|
|
- nfs-ganesha 2.7.0, obsolete xfs, enable lttng
|
|
|
|
|
2018-09-17 13:01:09 +00:00
|
|
|
* Mon Sep 17 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.7.0-1
|
|
|
|
- nfs-ganesha 2.7.0 GA
|
|
|
|
|
2018-08-22 15:25:11 +00:00
|
|
|
* Wed Aug 22 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.3-1
|
|
|
|
- nfs-ganesha 2.6.3 GA
|
|
|
|
|
2018-08-10 07:57:34 +00:00
|
|
|
* Fri Aug 10 2018 Petr Lautrbach <plautrba@redhat.com> - 2.6.2-5
|
|
|
|
- require the correct package with /usr/sbin/semanage
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Jul 17 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.2-4
|
|
|
|
- disable utils, python
|
|
|
|
|
2018-07-13 11:35:21 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-03 19:39:07 +00:00
|
|
|
* Tue Jul 3 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- defattr
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed May 16 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.2-2
|
2018-05-16 13:49:54 +00:00
|
|
|
- nfs-ganesha 2.6.2 w/ ceph and rgw FSALs
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu May 10 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.2-1
|
2018-05-10 17:39:05 +00:00
|
|
|
- nfs-ganesha 2.6.2 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Mar 20 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.1-1
|
2018-03-20 15:24:55 +00:00
|
|
|
- nfs-ganesha 2.6.1 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Mar 2 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.0-2
|
2018-03-02 12:25:19 +00:00
|
|
|
- nfs-ganesha 2.6.0 GA, rebuild (relink) with libntirpc-1.6.1
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Feb 20 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.0-1
|
2018-02-20 13:14:05 +00:00
|
|
|
- nfs-ganesha 2.6.0 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Feb 20 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.0-0.5rc5
|
2018-02-20 11:01:51 +00:00
|
|
|
- nfs-ganesha 2.6.0 RC5, rebuild with libntirpc-1.6.1
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Feb 9 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.0-0.4rc5
|
2018-02-09 12:27:23 +00:00
|
|
|
- nfs-ganesha 2.6.0 RC5
|
|
|
|
|
2018-02-08 04:11:01 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-0.3rc3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jan 19 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.0-0.1rc3
|
2018-01-19 14:00:46 +00:00
|
|
|
- nfs-ganesha 2.6.0 RC3
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Jan 17 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.6.0-0.1rc2
|
2018-01-17 19:32:41 +00:00
|
|
|
- nfs-ganesha 2.6.0 RC2
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Jan 11 2018 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.4-2
|
2018-01-11 20:38:11 +00:00
|
|
|
- rebuild with libnfsidmap (libnfsidmap.so.1)
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Nov 13 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.4-1
|
2017-11-13 19:28:54 +00:00
|
|
|
- nfs-ganesha 2.5.4 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Oct 20 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.3-3
|
2017-10-20 16:54:58 +00:00
|
|
|
- nfs-ganesha 2.5.3, quiet semanage
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Oct 20 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.3-2
|
2017-10-20 16:47:58 +00:00
|
|
|
- nfs-ganesha 2.5.3, fix semanage in %%post
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Oct 10 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.3-1
|
2017-10-10 13:49:19 +00:00
|
|
|
- nfs-ganesha 2.5.3 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Sep 27 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.2-6
|
2017-09-27 11:19:24 +00:00
|
|
|
- /var/log/ganesha -> ganesha_var_log_t
|
|
|
|
- see https://github.com/nfs-ganesha/nfs-ganesha/issues/212
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Sep 22 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.2-5
|
2017-09-22 19:30:33 +00:00
|
|
|
- /var/log/ganesha -> ganesha_var_log_t
|
|
|
|
- see https://github.com/nfs-ganesha/nfs-ganesha/issues/212
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Sep 22 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.2-4
|
2017-09-22 13:21:05 +00:00
|
|
|
- /var/log/ganesha owner ganesha.ganesha -> ganesha.root
|
|
|
|
- see https://github.com/nfs-ganesha/nfs-ganesha/issues/212
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Aug 25 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.2-3
|
2017-08-25 17:13:31 +00:00
|
|
|
- no rdma on arm(v7hl), FSAL_RGW, FSAL_CEPH; with ceph-12-1.4-5
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Aug 24 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.2-2
|
2017-08-24 14:34:53 +00:00
|
|
|
- no rdma on arm(v7hl), thus no rgw in ceph, hence no FSAL_RGW
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Aug 24 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.2-1
|
2017-08-24 13:21:29 +00:00
|
|
|
- nfs-ganesha 2.5.2 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Aug 18 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.1.1-2
|
2017-08-18 17:57:40 +00:00
|
|
|
- /var/run -> /run
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Aug 2 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.1.1-1
|
2017-08-03 13:30:28 +00:00
|
|
|
- nfs-ganesha 2.5.1.1 GA
|
|
|
|
- enable ppc64, enable FSAL_GPFS
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jul 21 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.1-1
|
2017-07-22 02:35:04 +00:00
|
|
|
- nfs-ganesha 2.5.1 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Jul 19 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-4
|
2017-07-19 17:23:46 +00:00
|
|
|
- nfs-ganesha 2.5.0 rebuild with libntirpc-1.5.3
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Jun 27 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-3
|
2017-06-27 13:31:32 +00:00
|
|
|
- nfs-ganesha 2.5.0 rebuild with ceph
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sun Jun 25 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-2
|
2017-06-25 22:44:52 +00:00
|
|
|
- nfs-ganesha 2.5.0 rebuild with userspace-rcu-0.10.0 (liburcu-bp.so.6)
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jun 12 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-1
|
2017-06-12 16:24:06 +00:00
|
|
|
- nfs-ganesha 2.5.0 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Jun 7 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.10final
|
2017-06-07 05:54:32 +00:00
|
|
|
- nfs-ganesha 2.5 final
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Jun 6 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.9rc9
|
2017-06-07 05:54:32 +00:00
|
|
|
- nfs-ganesha 2.5 rc9
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue May 30 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.8rc8
|
2017-05-30 22:25:04 +00:00
|
|
|
- nfs-ganesha 2.5 rc8, with libntirpc-1.5.2
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon May 22 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.7rc7
|
2017-05-30 22:25:04 +00:00
|
|
|
- nfs-ganesha 2.5 rc7
|
2017-05-22 12:30:59 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sun May 14 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.6rc6
|
2017-05-30 22:25:04 +00:00
|
|
|
- nfs-ganesha 2.5 rc6
|
2017-05-14 21:54:49 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu May 11 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.5rc5
|
2017-05-30 22:25:04 +00:00
|
|
|
- nfs-ganesha 2.5 rc5
|
2017-05-11 11:23:09 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed May 10 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.4rc4
|
2017-05-11 11:18:28 +00:00
|
|
|
- rebuild with libntirpc-1.5.1
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon May 8 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.3rc4
|
2017-05-30 22:25:04 +00:00
|
|
|
- nfs-ganesha 2.5 rc4
|
2017-05-08 10:44:21 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon May 1 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.2rc3
|
2017-05-30 22:25:04 +00:00
|
|
|
- nfs-ganesha 2.5 rc3
|
2017-05-01 14:45:21 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Apr 24 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.5.0-0.1rc2
|
2017-05-30 22:25:04 +00:00
|
|
|
- nfs-ganesha 2.5 rc2
|
2017-04-22 12:38:40 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Apr 19 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.5-2
|
2017-04-19 17:43:37 +00:00
|
|
|
- nfs-ganesha 2.4.5 GA, w/ RGW again (cephfs-10.2.7)
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Apr 5 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.5-1
|
2017-04-05 13:50:22 +00:00
|
|
|
- nfs-ganesha 2.4.5 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Mar 21 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.4-1
|
2017-03-21 12:45:31 +00:00
|
|
|
- nfs-ganesha 2.4.4 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Feb 9 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.3-2
|
2017-02-10 21:35:30 +00:00
|
|
|
- nfs-ganesha 2.4.3 GA, reenable FSAL_CEPH and FSAL_RGW
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Feb 7 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.3-1
|
2017-02-07 22:13:24 +00:00
|
|
|
- nfs-ganesha 2.4.3 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jan 23 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.2-1
|
2017-01-24 01:20:55 +00:00
|
|
|
- nfs-ganesha 2.4.2 GA
|
|
|
|
|
2017-01-18 18:26:06 +00:00
|
|
|
* Wed Jan 18 2017 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- python2 (vs. python3) cleanup
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Dec 23 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.1-2
|
2016-12-23 12:25:07 +00:00
|
|
|
- nfs-ganesha 2.4.1 w/ FSAL_RGW
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Oct 31 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.1-1
|
2016-10-31 13:35:03 +00:00
|
|
|
- nfs-ganesha 2.4.1 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Oct 28 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-2
|
2016-10-26 14:01:54 +00:00
|
|
|
- rebuild with libntirpc-1.4.3
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Sep 22 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-1
|
2016-09-22 19:44:43 +00:00
|
|
|
- nfs-ganesha 2.4.0 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Sep 21 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.22rc6
|
2016-09-21 11:48:51 +00:00
|
|
|
- 2.4-rc6
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Sep 16 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.21rc5
|
2016-09-16 05:25:54 +00:00
|
|
|
- 2.4-rc5
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sun Sep 11 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.20rc4
|
2016-09-11 14:56:46 +00:00
|
|
|
- 2.4-rc4
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Sep 7 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.19rc3
|
2016-09-07 18:19:30 +00:00
|
|
|
- 2.4-rc3
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Sep 6 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.18rc2
|
2016-09-06 13:48:40 +00:00
|
|
|
- 2.4-rc2
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Aug 29 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.17rc1
|
2016-08-29 16:34:28 +00:00
|
|
|
- 2.4-rc1
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Aug 16 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.16dev29
|
2016-08-16 11:49:52 +00:00
|
|
|
- 2.4-dev-29, jemalloc off by default (conflicts with glusterfs-api)
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Aug 15 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.15dev29
|
2016-08-15 17:58:11 +00:00
|
|
|
- 2.4-dev-29
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Aug 1 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.14dev27
|
2016-08-01 17:41:23 +00:00
|
|
|
- 2.4-dev-27
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jul 25 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.13dev26
|
2016-07-25 12:13:20 +00:00
|
|
|
- 2.4-dev-26
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Jul 20 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.12dev25
|
2016-07-20 17:18:39 +00:00
|
|
|
- 2.4-dev-25 (revised 32-bit)
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Jul 19 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.11dev25
|
2016-07-19 13:06:59 +00:00
|
|
|
- 2.4-dev-25
|
|
|
|
|
2016-07-19 08:02:27 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-0.10dev23
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Jul 5 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.9dev23
|
2016-07-05 11:48:53 +00:00
|
|
|
- 2.4-dev-23
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jun 24 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.8dev21
|
2016-06-24 17:19:30 +00:00
|
|
|
- 2.4-dev-21 w/ FSAL_RGW
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jun 20 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.7dev21
|
2016-06-20 15:17:07 +00:00
|
|
|
- 2.4-dev-21
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon May 30 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.6dev19
|
2016-05-30 13:06:54 +00:00
|
|
|
- 2.4-dev-19
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue May 10 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.5dev17
|
2016-05-10 11:55:18 +00:00
|
|
|
- 2.4-dev-17
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Apr 8 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.4dev14
|
2016-04-08 12:52:46 +00:00
|
|
|
- 2.4-dev-14
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Mar 31 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.3dev12
|
2016-03-31 13:36:24 +00:00
|
|
|
- 2.4-dev-12
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Feb 29 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.2dev10
|
2016-03-01 02:18:28 +00:00
|
|
|
- 2.4-dev-10
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Feb 5 2016 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.4.0-0.1dev7
|
2016-02-05 09:22:34 +00:00
|
|
|
- 2.4-dev-7
|
|
|
|
|
2016-02-04 09:19:33 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Nov 17 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-2
|
2015-11-17 13:58:54 +00:00
|
|
|
- Requires: rpcbind or portmap
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Oct 28 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-1
|
2015-10-28 14:07:49 +00:00
|
|
|
- 2.3.0 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Oct 27 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.15rc8
|
2015-10-27 12:44:46 +00:00
|
|
|
- 2.3.0 RC8, rebuild with libntirpc-1.3.1, again
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Oct 26 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.14rc8
|
2015-10-26 17:15:47 +00:00
|
|
|
- 2.3.0 RC8, rebuild with libntirpc-1.3.1
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sun Oct 25 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.13rc8
|
2015-10-25 11:46:42 +00:00
|
|
|
- 2.3.0 RC8
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Oct 22 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.12rc7
|
2015-10-22 14:24:58 +00:00
|
|
|
- 2.3.0 RC7 (N.B. 2.3.0-0.11rc6 was really rc7)
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Oct 19 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.11rc7
|
2015-10-19 11:37:25 +00:00
|
|
|
- 2.3.0 RC7
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Oct 12 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.10rc6
|
2015-10-12 12:32:26 +00:00
|
|
|
- 2.3.0 RC6
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Oct 8 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.9rc5
|
2015-10-09 12:06:45 +00:00
|
|
|
- 2.3.0 RC5 w/ CMakeLists.txt.patch and config-h.in.cmake.patch
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Oct 7 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.8rc5
|
2015-10-07 17:18:04 +00:00
|
|
|
- 2.3.0 RC5 mount-9p w/o Requires: nfs-ganesha
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Oct 6 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.7rc5
|
2015-10-06 22:04:41 +00:00
|
|
|
- 2.3.0 RC5 revised scripts/ganeshactl/CMakeLists.txt.patch
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Oct 5 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.6rc5
|
2015-10-05 12:25:25 +00:00
|
|
|
- 2.3.0 RC5
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Sep 28 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.5rc4
|
2015-09-28 14:10:11 +00:00
|
|
|
- 2.3.0 RC4
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Sep 18 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.4rc3
|
2015-09-18 13:51:58 +00:00
|
|
|
- 2.3.0 RC3
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Sep 11 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.3rc2
|
2015-09-13 11:21:22 +00:00
|
|
|
- 2.3.0 RC2
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Sep 11 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.2rc1
|
2015-09-11 21:47:42 +00:00
|
|
|
- 2.3.0 RC1, revised .../SAL/nfs4_state_id.c.patch
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Sep 9 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.3.0-0.1rc1
|
2015-09-10 18:19:12 +00:00
|
|
|
- 2.3.0 RC1
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sat Aug 29 2015 Niels de Vos <ndevos@redhat.com> - 2.2.0-6
|
2015-08-29 15:17:18 +00:00
|
|
|
- Rebuilt for jemalloc SONAME bump
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jul 17 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-5
|
2015-07-17 17:24:37 +00:00
|
|
|
- BuildRequires: libntirprc on base
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jul 17 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-4
|
2015-07-17 15:06:26 +00:00
|
|
|
- link with unbundled, shared libntirpc
|
|
|
|
|
2015-06-17 21:47:30 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-05-27 14:06:45 +00:00
|
|
|
* Wed May 27 2015 Niels de Vos <ndevos@redhat.com>
|
|
|
|
- improve readability and allow "rpmbuild --with .." options again
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri May 15 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-2
|
2015-10-28 14:07:49 +00:00
|
|
|
- %%license, build with glusterfs-3.7.0 GA
|
2015-05-15 12:26:03 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Apr 21 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-1
|
2015-04-21 16:31:53 +00:00
|
|
|
- 2.2.0 GA
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Apr 20 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.13rc-final
|
2015-04-20 13:09:55 +00:00
|
|
|
- 2.2.0-0.13rc-final
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Apr 13 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.12rc8
|
2015-04-13 04:58:39 +00:00
|
|
|
- 2.2.0-0.12rc8
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Apr 6 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.11rc7
|
2015-04-06 05:13:05 +00:00
|
|
|
- 2.2.0-0.11rc7
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Apr 2 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.10rc6
|
2015-04-02 16:31:11 +00:00
|
|
|
- 2.2.0-0.10rc6, with unbundled libntirpc
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Mar 30 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.9rc6
|
2015-03-30 11:45:15 +00:00
|
|
|
- 2.2.0-0.9rc6
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sun Mar 22 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.8rc5
|
2015-03-23 01:28:54 +00:00
|
|
|
- 2.2.0-0.8rc5
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Mar 17 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.7rc4
|
2015-03-17 18:31:48 +00:00
|
|
|
- ntirpc-1.2.1.tar.gz
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Mar 17 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.6rc4
|
2015-03-17 14:25:37 +00:00
|
|
|
- updated ntirpc-1.2.0.tar.gz
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sun Mar 15 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.5rc4
|
2015-03-23 01:28:54 +00:00
|
|
|
- 2.2.0-0.5rc4
|
2015-03-15 22:51:55 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Feb 23 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.4rc3
|
2015-02-23 19:13:49 +00:00
|
|
|
- 2.2.0-0.4rc3
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Feb 16 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.3rc2
|
2015-10-28 14:07:49 +00:00
|
|
|
- subpackage Requires: nfs-ganesha = %%{version}-%%{release}
|
2015-02-16 13:50:40 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Feb 16 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.2rc2
|
2015-02-16 12:56:22 +00:00
|
|
|
- 2.2.0-0.2rc2
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Feb 13 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.2.0-0.1rc1
|
2015-02-13 18:23:18 +00:00
|
|
|
- 2.2.0-0.1rc1
|
|
|
|
- nfs-ganesha.spec based on upstream
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Feb 12 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-14
|
2015-02-12 17:15:16 +00:00
|
|
|
- Fedora 23/rawhide build fixes
|
2015-02-12 17:18:26 +00:00
|
|
|
- Ceph restored in EPEL
|
2015-02-12 17:15:16 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jan 19 2015 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-13
|
2015-01-19 14:04:03 +00:00
|
|
|
- Ceph retired from EPEL 7
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Nov 6 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-12
|
2014-11-06 12:23:59 +00:00
|
|
|
- rebuild after libnfsidmap symbol version revert
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed Oct 29 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-11
|
2014-10-29 12:00:21 +00:00
|
|
|
- PyQt -> PyQt4 typo
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Oct 27 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-10
|
2014-10-28 11:36:57 +00:00
|
|
|
- use upstream init.d script
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Oct 2 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-9
|
2014-10-02 16:14:19 +00:00
|
|
|
- restore exclusion of gluster gfapi on rhel
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Oct 2 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-8
|
2014-10-02 15:47:39 +00:00
|
|
|
- install /etc/dbus-1/system.d/org.ganesha.nfsd.conf
|
|
|
|
- build and install admin tools
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Sep 29 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-7
|
2014-09-29 14:39:19 +00:00
|
|
|
- install /etc/sysconfig/nfs-ganesha file
|
|
|
|
|
2014-08-29 11:27:00 +00:00
|
|
|
* Fri Aug 29 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- Ceph FSAL typo, #1135437
|
|
|
|
|
2014-08-17 11:46:49 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Jul 24 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-5
|
2014-07-24 14:09:41 +00:00
|
|
|
- use upstream nfs-ganesha.service
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jul 11 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-4
|
2014-07-11 21:22:09 +00:00
|
|
|
- keep fsal .so files, implementation now uses them
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Jul 1 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-3
|
2014-07-01 15:23:25 +00:00
|
|
|
- static libuid2grp
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Tue Jul 1 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-2
|
2014-07-01 11:06:55 +00:00
|
|
|
- add libuid2grp.so
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jun 30 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.1.0-1
|
2014-06-30 12:14:07 +00:00
|
|
|
- nfs-ganesha-2.1.0 GA
|
|
|
|
|
2014-06-07 12:44:43 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.0-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jun 2 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-9
|
2014-06-02 06:19:34 +00:00
|
|
|
- Ceph FSAL enabled with ceph-0.80
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Wed May 21 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-8
|
2014-05-22 11:12:56 +00:00
|
|
|
- getdents()->getdents64(), struct dirent -> struct dirent64
|
|
|
|
|
2014-05-10 13:57:04 +00:00
|
|
|
* Sat May 10 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- and exclude libfsalceph
|
|
|
|
|
2014-05-10 13:49:48 +00:00
|
|
|
* Sat May 10 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- exclude libfsalgluster correctly
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri May 9 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-7
|
2014-05-10 10:24:30 +00:00
|
|
|
- Ceph FSAL, in a subpackage, (but requires ceph >= 0.78)
|
|
|
|
|
2014-03-31 13:40:29 +00:00
|
|
|
* Mon Mar 31 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- GlusterFS FSAL in a subpackage
|
|
|
|
- EPEL7 has jemalloc as of 2014-02-25
|
|
|
|
|
2014-01-21 19:35:41 +00:00
|
|
|
* Tue Jan 21 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com>
|
|
|
|
- sussed out github archive so as to allow correct Source0
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jan 17 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-6
|
2014-01-17 19:06:53 +00:00
|
|
|
- EPEL7 and xfsprogs
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Jan 17 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-5
|
2014-01-17 14:38:29 +00:00
|
|
|
- EPEL7
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Jan 6 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-4
|
2014-01-06 15:06:27 +00:00
|
|
|
- with glusterfs-api(-devel) >= 3.4.2
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Sat Jan 4 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-3
|
2014-01-04 16:21:56 +00:00
|
|
|
- with glusterfs-api
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Thu Jan 2 2014 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-2
|
2014-01-02 16:20:03 +00:00
|
|
|
- Build on RHEL6. Add sample init.d script
|
|
|
|
|
2013-12-11 01:18:46 +00:00
|
|
|
* Wed Dec 11 2013 Jim Lieb <lieb@sea-troll.net> - 2.0.0-1
|
|
|
|
- Update to V2.0.0 release
|
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Mon Nov 25 2013 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-0.2.rcfinal
|
2013-11-25 17:58:01 +00:00
|
|
|
- update to RC-final
|
2013-11-25 18:01:01 +00:00
|
|
|
|
2018-07-17 15:58:24 +00:00
|
|
|
* Fri Nov 22 2013 Kaleb S. KEITHLEY <kkeithle at redhat.com> - 2.0.0-0.1.rc5
|
2013-11-25 18:01:01 +00:00
|
|
|
- Initial commit
|