Kristyna Streitova
a15dedb4cc
- update to 4.06: * Remove quot tool (Jan Kara) * quotacheck,quotaon: Suggest using quota feature for ext4 (Jan Kara) * quota: Add --filesystem option (Jan Kara) * quota: Add synopsis for project quota (Jan Kara) * Handle grace time overflows for XFS quotas (Jan Kara) * Support grace period expirations past y2038 for XFS (Darrick J. Wong) * Fix limits setting on XFS filesystem (Jan Kara) * quota-tools: Set FS_DQ_TIMER_MASK for individual xfs grace times (Eric Sandeen) * quota-tools: pass quota type to QCMD for Q_XFS_GETQSTAT (Eric Sandeen) * Fix ignoring disabled quotas (Petr Písař) * warnquota: Initialize all members of a configparams structure (Petr Písař) * warnquota: Free LDAP error message (Petr Písař) * Make a directory for quota_nld PID file configurable (Petr Písař) * warnquota: Clarify that CC_TO gets resolved through LDAP (Jan Kara) * warnquota: Print also additional error info for LDAP errors (Jan Kara) * warnquota: Properly detect LDAP errors (Jan Kara) * warnquota: Do not ignore errors in config file (Jan Kara) * warnquota: Fix help text (Jan Kara) * quotacheck: Skip checking of filesystems with hidded quota files early (Jan Kara) * quotaops: Make error string translatable (Jan Kara) * rpc: Clarify error message when cannot connect to rpc.rquotad (Jan Kara) * setquota: Report failure to obtain quota information (Jan Kara) * quotaops: Do not leak dquot structures on failure (Jan Kara) * quotaops: Do not return partial list from getprivs() (Jan Kara) * Make messages about failures for NFS consistent with local filesystems (Jan Kara) * Delete old documentation (Jan Kara) * COPYING: Update mailing address (Jan Kara) * edquota: Remove forgotten license header (Jan Kara) * configure.ac: add --disable-pie option (Fabrice Fontaine) OBS-URL: https://build.opensuse.org/request/show/877847 OBS-URL: https://build.opensuse.org/package/show/Base:System/quota?expand=0&rev=67
146 lines
4.1 KiB
RPMSpec
146 lines
4.1 KiB
RPMSpec
#
|
|
# spec file for package quota
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
#Compat macro for new _fillupdir macro introduced in Nov 2017
|
|
%if ! %{defined _fillupdir}
|
|
%define _fillupdir %{_localstatedir}/adm/fillup-templates
|
|
%endif
|
|
Name: quota
|
|
Version: 4.06
|
|
Release: 0
|
|
Summary: Disk Quota System
|
|
License: GPL-2.0-only
|
|
Group: System/Filesystems
|
|
URL: https://sourceforge.net/projects/linuxquota/
|
|
Source0: https://downloads.sourceforge.net/project/linuxquota/quota-tools/%{version}/%{name}-%{version}.tar.gz
|
|
Source1: sysconfig.nfs-quota
|
|
Source2: quotad.service
|
|
Source3: quotad_env.sh
|
|
BuildRequires: e2fsprogs-devel
|
|
BuildRequires: openldap2-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: rpcgen
|
|
BuildRequires: tcpd-devel
|
|
BuildRequires: pkgconfig(dbus-1)
|
|
BuildRequires: pkgconfig(libnl-3.0) >= 3.1
|
|
BuildRequires: pkgconfig(libnl-genl-3.0)
|
|
BuildRequires: pkgconfig(libtirpc)
|
|
BuildRequires: pkgconfig(systemd)
|
|
|
|
%description
|
|
The quota subsystem allows a system administrator to set soft and hard
|
|
limits on used space and the number of inodes used for users and
|
|
groups. The kernel must be compiled with disk quota support enabled
|
|
(SUSE kernels have this support).
|
|
|
|
%package nfs
|
|
Summary: Disk Quota System on NFS
|
|
Group: System/Filesystems
|
|
Requires: nfs-kernel-server
|
|
Requires: quota = %{version}
|
|
# Require the services needed to be present for quotad service: portmap, nfsserver, network
|
|
Requires: rpcbind
|
|
Requires: sysconfig
|
|
Requires(post): %fillup_prereq
|
|
%{?systemd_requires}
|
|
|
|
%description nfs
|
|
The quotad init script, which provides quota support on NFS mounts.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%configure \
|
|
--docdir=%{_docdir}/%{name} \
|
|
--disable-silent-rules \
|
|
--enable-ldapmail \
|
|
--enable-rpc \
|
|
--enable-rpcsetquota
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
|
|
#installing ldap-scripts
|
|
install -m 755 ldap-scripts/*pl %{buildroot}%{_sbindir}/
|
|
install -m 755 ldap-scripts/edquota_editor %{buildroot}%{_sbindir}/
|
|
|
|
mkdir -p %{buildroot}%{_unitdir}
|
|
cp %{SOURCE2} %{buildroot}%{_unitdir}/quotad.service
|
|
ln -s service %{buildroot}%{_sbindir}/rcquotad
|
|
# systemd unit file sucks so bash script to work around it is provided
|
|
install -d -m 755 %{buildroot}%{_unitdir}/../scripts/
|
|
install -m 755 %{SOURCE3} %{buildroot}%{_unitdir}/../scripts/quotad_env.sh
|
|
|
|
install -d -m 755 %{buildroot}%{_fillupdir}
|
|
cp %{SOURCE1} %{buildroot}%{_fillupdir}/sysconfig.nfs-quota
|
|
|
|
%find_lang %{name}
|
|
|
|
%pre nfs
|
|
%service_add_pre quotad.service
|
|
|
|
%post nfs
|
|
%{fillup_only -an nfs}
|
|
%service_add_post quotad.service
|
|
|
|
%preun nfs
|
|
%service_del_preun quotad.service
|
|
|
|
%postun nfs
|
|
%service_del_postun quotad.service
|
|
|
|
%files -f %{name}.lang
|
|
%license COPYING
|
|
%config %{_sysconfdir}/quotagrpadmins
|
|
%config %{_sysconfdir}/quotatab
|
|
%config %{_sysconfdir}/warnquota.conf
|
|
%dir %{_docdir}/%{name}
|
|
%{_docdir}/%{name}/*
|
|
%{_mandir}/man?/*
|
|
%{_bindir}/quota
|
|
%{_bindir}/quotasync
|
|
%{_sbindir}/applySystemQuotas.pl
|
|
%{_sbindir}/convertquota
|
|
%{_sbindir}/edquota
|
|
%{_sbindir}/edquota_editor
|
|
%{_sbindir}/quota_nld
|
|
%{_sbindir}/quotacheck
|
|
%{_sbindir}/quotaoff
|
|
%{_sbindir}/quotaon
|
|
%{_sbindir}/quotastats
|
|
%{_sbindir}/repquota
|
|
%{_sbindir}/setSystemQuotas.pl
|
|
%{_sbindir}/setquota
|
|
%{_sbindir}/setquota-ldap.pl
|
|
%{_sbindir}/warnquota
|
|
%{_sbindir}/xqmstats
|
|
|
|
%files nfs
|
|
%{_sbindir}/rpc.rquotad
|
|
%{_sbindir}/rcquotad
|
|
%{_unitdir}/quotad.service
|
|
%{_unitdir}/../scripts
|
|
%{_unitdir}/../scripts/quotad_env.sh
|
|
%{_fillupdir}/sysconfig.nfs-quota
|
|
# these files conflicts with glibc rpm
|
|
%exclude %{_includedir}/rpcsvc/*
|
|
|
|
%changelog
|