1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/quota/quota.spec Fri Mar 11 21:30:26 2011 +0100 1.3 @@ -0,0 +1,601 @@ 1.4 +#allow remote set quota by defined rpcsetquota to 1(set to 0 to disabled it) 1.5 +%{!?rpcsetquota:%define rpcsetquota 1} 1.6 + 1.7 +Name: quota 1.8 +Summary: System administration tools for monitoring users' disk usage 1.9 +Epoch: 1 1.10 +Version: 4.00 1.11 +Release: 0.1.pre1%{?dist} 1.12 +License: BSD and GPLv2+ 1.13 +URL: http://sourceforge.net/projects/linuxquota/ 1.14 +Group: System Environment/Base 1.15 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 1.16 +Requires: initscripts >= 6.38 tcp_wrappers 1.17 +Requires: quota-nls = %{epoch}:%{version}-%{release} 1.18 +Conflicts: kernel < 2.4 1.19 +BuildRequires: e2fsprogs-devel gettext tcp_wrappers-devel nss-devel 1.20 +BuildRequires: openldap-devel openssl-devel dbus-devel libnl-devel 1.21 +Source0: http://downloads.sourceforge.net/linuxquota/%{name}-%{version}-pre1.tar.gz 1.22 +Source1: quota_nld.init 1.23 +Source2: quota_nld.sysconfig 1.24 +Patch0: quota-3.06-warnquota.patch 1.25 +Patch1: quota-3.06-no-stripping.patch 1.26 +Patch2: quota-3.06-man-page.patch 1.27 +Patch3: quota-3.06-pie.patch 1.28 +Patch4: quota-3.13-wrong-ports.patch 1.29 +Patch5: quota-3.16-helpoption.patch 1.30 +Patch6: quota-3.16-quotaoffhelp.patch 1.31 +Patch8: quota-3.17-ftbfs.patch 1.32 +# Bug #528581, remove in upstream 4.00 1.33 +Patch9: quota-4.00_pre1-quotactl_null_corruption.patch 1.34 +# Included in upstream 4.00_pre2 1.35 +Patch10: quota-4.00_pre1-add-gfs2-support.patch 1.36 + 1.37 +%description 1.38 +The quota package contains system administration tools for monitoring 1.39 +and limiting user and or group disk usage per file system. 1.40 + 1.41 + 1.42 +%package nld 1.43 +Summary: quota_nld daemon 1.44 +Group: System Environment/Base 1.45 +Requires: initscripts 1.46 +Requires: quota-nls = %{epoch}:%{version}-%{release} 1.47 +Requires(post): chkconfig 1.48 +Requires(preun): chkconfig initscripts 1.49 + 1.50 +%description nld 1.51 +Daemon that listens on netlink socket and processes received quota warnings. 1.52 +Note, that you have to enable the kernel support for sending quota messages 1.53 +over netlink (in Filesystems->Quota menu). The daemon supports forwarding 1.54 +warning messages to the system D-Bus (so that desktop manager can display 1.55 +a dialog) and writing them to the terminal user has last accessed. 1.56 + 1.57 + 1.58 +%package warnquota 1.59 +Summary: Send e-mail to users over quota 1.60 +Group: System Environment/Base 1.61 +Requires: quota-nls = %{epoch}:%{version}-%{release} 1.62 + 1.63 +%description warnquota 1.64 +Utility that checks disk quota for each local file system and mails a warning 1.65 +message to those users who have reached their soft limit. It is typically run 1.66 +via cron(8). 1.67 + 1.68 + 1.69 +%package nls 1.70 +Summary: Gettext catalogs for disk quota tools 1.71 +Group: System Environment/Base 1.72 +BuildArch: noarch 1.73 + 1.74 +%description nls 1.75 +Disk quota tools messages translated into different natural languages. 1.76 + 1.77 + 1.78 +%package devel 1.79 +Summary: Development files for quota 1.80 +Group: System Environment/Base 1.81 +Requires: quota = %{epoch}:%{version}-%{release} 1.82 + 1.83 +%description devel 1.84 +The quota package contains system administration tools for monitoring 1.85 +and limiting user and or group disk usage per file system. 1.86 + 1.87 +This package contains development header files for implementing quotas 1.88 +on remote machines. 1.89 + 1.90 + 1.91 +%package doc 1.92 +Summary: Additional documentation for disk quotas 1.93 +Group: Documentation 1.94 +Requires: quota = %{epoch}:%{version}-%{release} 1.95 +BuildArch: noarch 1.96 + 1.97 +%description doc 1.98 +This package contains additional documentation for disk quotas concept in 1.99 +Linux/UNIX environment. 1.100 + 1.101 + 1.102 +%prep 1.103 +%setup -q -n quota-tools 1.104 +%patch0 -p1 1.105 +%patch1 -p1 1.106 +%patch2 -p1 1.107 +%ifnarch ppc ppc64 1.108 +%patch3 -p1 1.109 +%endif 1.110 +%patch4 -p1 1.111 +%patch5 -p1 1.112 +%patch6 -p1 -b .usage 1.113 +%patch8 -p1 1.114 +%patch9 -p1 -b .quotactl_null_corruption 1.115 +%patch10 -p1 -b .gfs2 1.116 +# quotactl(2) moved into `man-pages' package (bug #640590) 1.117 +rm -f quotactl.2 1.118 +# remove VCS files 1.119 +rm -rf doc/CVS 1.120 + 1.121 +#fix typos/mistakes in localized documentation 1.122 +for pofile in $(find ./po/*.p*) 1.123 +do 1.124 + sed -i 's/editting/editing/' "$pofile" 1.125 +done 1.126 + 1.127 +# Fix charset 1.128 +for F in Changelog; do 1.129 + iconv -f latin1 -t utf-8 <"$F" >"${F}.utf8" 1.130 + touch -r "$F"{,.utf8} 1.131 + mv "$F"{.utf8,} 1.132 +done 1.133 + 1.134 +%build 1.135 +%configure \ 1.136 + --enable-ldapmail=try \ 1.137 +%if %{rpcsetquota} 1.138 + --enable-rpcsetquota=yes \ 1.139 +%endif 1.140 + --enable-rootsbin \ 1.141 + --enable-netlink=yes 1.142 +make 1.143 + 1.144 + 1.145 +%install 1.146 +rm -fr %{buildroot} 1.147 +mkdir -p %{buildroot}/sbin 1.148 +mkdir -p %{buildroot}%{_sysconfdir} 1.149 +mkdir -p %{buildroot}%{_sbindir} 1.150 +mkdir -p %{buildroot}%{_bindir} 1.151 +mkdir -p %{buildroot}%{_mandir}/{man1,man3,man8} 1.152 +make install INSTALL='install -p' ROOTDIR=%{buildroot} 1.153 +install -m 644 warnquota.conf %{buildroot}%{_sysconfdir} 1.154 +# 1.155 +# we don't support XFS yet 1.156 +# 1.157 +rm -f %{buildroot}%{_sbindir}/quot 1.158 +rm -f %{buildroot}%{_sbindir}/xqmstats 1.159 +rm -f %{buildroot}%{_mandir}/man8/quot.* 1.160 +rm -f %{buildroot}%{_mandir}/man8/xqmstats.* 1.161 +ln -s quotaon.8.gz \ 1.162 + %{buildroot}%{_mandir}/man8/quotaoff.8 1.163 +ln -s rquotad.8.gz \ 1.164 + %{buildroot}%{_mandir}/man8/rpc.rquotad.8 1.165 + 1.166 +install -p -m755 -D %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/quota_nld 1.167 +install -p -m644 -D %{SOURCE2} \ 1.168 + $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/quota_nld 1.169 + 1.170 +%find_lang %{name} 1.171 + 1.172 + 1.173 +%post nld 1.174 +/sbin/chkconfig --add quota_nld 1.175 + 1.176 +%preun nld 1.177 +if [ $1 = 0 ] ; then 1.178 + /sbin/service quota_nld stop >/dev/null 2>&1 1.179 + /sbin/chkconfig --del quota_nld 1.180 +fi 1.181 + 1.182 + 1.183 +%clean 1.184 +rm -rf %{buildroot} 1.185 + 1.186 + 1.187 +%files 1.188 +%defattr(-,root,root,-) 1.189 +%attr(0755,root,root) /sbin/* 1.190 +%attr(0755,root,root) %{_bindir}/* 1.191 +%attr(0755,root,root) %{_sbindir}/* 1.192 +%exclude %{_sbindir}/quota_nld 1.193 +%exclude %{_sbindir}/warnquota 1.194 +%attr(0644,root,root) %{_mandir}/man1/* 1.195 +%attr(0644,root,root) %{_mandir}/man8/* 1.196 +%exclude %{_mandir}/man8/quota_nld.8* 1.197 +%exclude %{_mandir}/man8/warnquota.8* 1.198 +%doc Changelog 1.199 + 1.200 +%files nld 1.201 +%defattr(-,root,root,-) 1.202 +%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/quota_nld 1.203 +%attr(0755,root,root) %{_initrddir}/quota_nld 1.204 +%attr(0755,root,root) %{_sbindir}/quota_nld 1.205 +%attr(0644,root,root) %{_mandir}/man8/quota_nld.8* 1.206 +%doc Changelog 1.207 + 1.208 +%files warnquota 1.209 +%defattr(-,root,root,-) 1.210 +%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/quotagrpadmins 1.211 +%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/quotatab 1.212 +%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/warnquota.conf 1.213 +%attr(0755,root,root) %{_sbindir}/warnquota 1.214 +%attr(0644,root,root) %{_mandir}/man8/warnquota.8* 1.215 +%doc Changelog README.ldap-support README.mailserver 1.216 + 1.217 +%files nls -f %{name}.lang 1.218 +%defattr(-,root,root,-) 1.219 +%doc Changelog 1.220 + 1.221 +%files devel 1.222 +%defattr(-,root,root,-) 1.223 +%dir %{_includedir}/rpcsvc 1.224 +%{_includedir}/rpcsvc/* 1.225 +%attr(0644,root,root) %{_mandir}/man3/* 1.226 + 1.227 +%files doc 1.228 +%defattr(-,root,root,-) 1.229 +%doc doc/* 1.230 + 1.231 + 1.232 +%changelog 1.233 +* Tue Nov 16 2010 Petr Pisar <ppisar@redhat.com> - 1:4.00-0.1.pre1 1.234 +- 4.00-pre1 bump 1.235 +- Separate gettext catalogs becuase they are required by all binary sub-packages 1.236 + 1.237 +* Mon Nov 15 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-18 1.238 +- Break warnquota dependency on main package 1.239 + 1.240 +* Mon Nov 15 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-17 1.241 +- Convert Changelog to UTF-8 1.242 + 1.243 +* Mon Nov 15 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-16 1.244 +- Break dependecies on main package as there are none 1.245 +- Add plain text documentation to each sub-package 1.246 +- Package additional documentation into `doc' sub-package 1.247 + 1.248 +* Thu Nov 11 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-15 1.249 +- Add quota_nld deamon init script (bug #634169) 1.250 +- Sub-package quota_nld files to weak dependecies 1.251 +- Sub-package warnquota files to weak dependecies 1.252 + 1.253 +* Wed Oct 06 2010 Petr Pisar <ppisar@redhat.com> - 1:3.17-14 1.254 +- Remove quotactl(2) as it's part of `man-pages' package (bug #640590) 1.255 + 1.256 +* Tue May 11 2010 Petr Pisar <ppisar@redhat.com> 1:3.17-13 1.257 +- Add GFS2 support 1.258 + 1.259 +* Tue May 10 2010 Petr Pisar <ppisar@redhat.com> 1:3.17-12 1.260 +- Prevent corruptive read/write from/to NULL address in rpc.rquotad 1.261 + (Resolves #528581, example in #532342) 1.262 +- Fix spelling in summary 1.263 + 1.264 +* Fri Mar 12 2010 Daniel Novotny <dnovotny@redhat.com> 1:3.17-11 1.265 +- the require from previous fix deleted altogether (it will 1.266 + be resolved automatically) 1.267 + 1.268 +* Fri Mar 12 2010 Daniel Novotny <dnovotny@redhat.com> 1:3.17-10 1.269 +- Requires: e2fsprogs changed to e2fsprogs-libs (#570005) 1.270 + 1.271 +* Tue Feb 23 2010 Daniel Novotny <dnovotny@redhat.com> 1:3.17-9 1.272 +- fix #565124 - FTBFS quota-3.17-8.fc13: ImplicitDSOLinking 1.273 + 1.274 +* Mon Sep 29 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-8 1.275 +- add buildrequires for quota_nld, enable-netlink to build 1.276 + quota_nld (#526047) 1.277 + 1.278 +* Fri Sep 18 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-7 1.279 +- Fix headers and structs in quotactl manpage(#524138) 1.280 + 1.281 +* Fri Aug 28 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-6 1.282 +- symlink manpage for rpc.rquotad 1.283 + 1.284 +* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.17-5 1.285 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 1.286 + 1.287 +* Fri Mar 13 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-4 1.288 +- clarify statements about LDAP in warnquota conf 1.289 + (related to #490106) 1.290 +- fix parsing issue in warnquota.c(#490125) 1.291 +- enable rpcsetquota by default(#159292, #469753) 1.292 + 1.293 +* Fri Mar 13 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-3 1.294 +- add missing buildrequires needed to compile with 1.295 + enable-ldapmail=try option with LDAP(#490106) 1.296 + 1.297 +* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.17-2 1.298 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 1.299 + 1.300 +* Tue Jan 13 2009 Ondrej Vasik <ovasik@redhat.com> 1:3.17-1 1.301 +- new upstream release, remove already applied patches 1.302 + 1.303 +* Mon Dec 08 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-8 1.304 +- fix documentation inconsistency (now rpc(3) instead of 1.305 + rpc(3N) in rquotad manpage) (#474836) 1.306 + 1.307 +* Fri Nov 14 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-7 1.308 +- fix quotaoff --help output (was same as quotaon output) 1.309 + 1.310 +* Thu Oct 30 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-6 1.311 +- fix implementation of ext4 support 1.312 + (by Mingming Cao, #469127) 1.313 + 1.314 +* Wed Sep 10 2008 Ondrej Vasik <ovasik@redhat.com> 1:3.16-5 1.315 +- fix rpmlint warnings - absolute symlink and not using epoch 1.316 + in version in changelog (#226353) 1.317 +- rquota headers and manpage now in devel subpackage 1.318 + 1.319 +* Wed Aug 27 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-4 1.320 +- fix bug in warnquota which could result in bogus hostname 1.321 + and domainname (upstream) 1.322 +- remove IMMUTABLE flag from quota file in quotacheck(upstream) 1.323 + 1.324 +* Tue Aug 05 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-3 1.325 +- Add support for -h option (do not show invalid option 1.326 + error) at edquota,setquota and quota (#457898) 1.327 + 1.328 +* Fri Jun 20 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-2 1.329 +- upstream fix of some typos, string formats + 4TB+ fix 1.330 + for repquota 1.331 +- some additional stripping removal 1.332 +- change default mode of binaries from 555 to 755 1.333 + (strip error messages in build log) 1.334 + 1.335 +* Wed Apr 23 2008 Ondrej Vasik <ovasik@redhat.com> 3.16-1 1.336 +- own directory of rpcsvc headers(#442143) 1.337 +- new upstream release 1.338 + 1.339 +* Wed Mar 12 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-6 1.340 +- added enable-ldapmail=try option(wonder how #133207 1.341 + got closed by FC-4 without it or warnquota.conf change) 1.342 +- dropped with-ext2direct=no option - this option is 1.343 + invalid and original bug was fixed in 3.07 1.344 + 1.345 +* Thu Mar 6 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-5 1.346 +- added symbolic link for quotaoff man page(#436110) 1.347 +- don't ship xqmstats.8 man page as we don't ship those 1.348 + binaries(#436100) 1.349 + 1.350 +* Thu Feb 21 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-4 1.351 +- added pointers to quota_nld and warnquota to some 1.352 + manpages(upstream, #83975) 1.353 + 1.354 +* Tue Feb 12 2008 Ondrej Vasik <ovasik@redhat.com> 3.15-3 1.355 +- allow to build with rpcsetquota enabled(disabled by 1.356 + default, #159292) 1.357 +- rebuild for gcc43 1.358 + 1.359 +* Thu Jan 24 2008 Steve Dickson <SteveD@RedHat.com> 3.15-2 1.360 +- More review comments: 1.361 + - BuiltPreReq to BuiltReq 1.362 + - Removed '.' From Summary 1.363 + - Added 'GPLv2+' to License Tag 1.364 + - Condensed the _sysconfdir entries in to one line 1.365 + 1.366 +* Thu Jan 24 2008 Steve Dickson <SteveD@RedHat.com> 3.15-1 1.367 +- Upgraded to version 3.15 1.368 +- Updated spec file per Merge Review (bz 226353) 1.369 + 1.370 +* Thu Feb 15 2007 Steve Dickson <SteveD@RedHat.com> 3.14-1 1.371 +- Upgraded to version 3.14 (bz# 213641) 1.372 + 1.373 +* Mon Dec 4 2006 Thomas Woerner <twoerner@redhat.com> 1:3.13-1.3 1.374 +- tcp_wrappers has a new devel and libs sub package, therefore changing build 1.375 + requirement for tcp_wrappers to tcp_wrappers-devel 1.376 + 1.377 +* Wed Nov 1 2006 Steve Dickson <SteveD@RedHat.com> 1:3.13-1.2.3.2 1.378 +- Added range checking on -p flag (bz 205145) 1.379 +- Error message prints garbage characters (bz 201226) 1.380 + 1.381 +* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1:3.13-1.2.3.1 1.382 +- rebuild 1.383 + 1.384 +* Fri Jun 30 2006 Steve Dickson <steved@redhat.com> - 1:3.13-1.2.3 1.385 +- fix 192826 - quota config files should not be overwritten 1.386 + 1.387 +* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1:3.13-1.2.1 1.388 +- bump again for double-long bug on ppc(64) 1.389 + 1.390 +* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1:3.13-1.2 1.391 +- rebuilt for new gcc4.1 snapshot and glibc changes 1.392 + 1.393 +* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com> 1.394 +- rebuilt 1.395 + 1.396 +* Mon Oct 31 2005 Steve Dickson <steved@redhat.com> 3.13-1 1.397 +- Upgraded to version 3.13 (bz# 171245) 1.398 + 1.399 +* Thu Aug 18 2005 Florian La Roche <laroche@redhat.com> 1.400 +- change the "Requires: kernel" into a "Conflicts:" 1.401 + 1.402 +* Sun Sep 26 2004 Rik van Riel <riel@redhat.com> 3.12-5 1.403 +- add URL (bz# 131862) 1.404 + 1.405 +* Fri Sep 24 2004 Steve Dickson <SteveD@RedHat.com> 1.406 +- Fixed typos in warnquota.conf patch 1.407 + (bz# 82250 and bz# 83974) 1.408 + 1.409 +* Mon Sep 13 2004 Steve Dickson <SteveD@RedHat.com> 1.410 +- upgraded to 3.12 1.411 + 1.412 +* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com> 1.413 +- rebuilt 1.414 + 1.415 +* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 1.416 +- rebuilt 1.417 + 1.418 +* Tue Jan 27 2004 Florian La Roche <Florian.LaRoche@redhat.de> 1.419 +- add -pie support 1.420 +- update to 3.10 1.421 + 1.422 +* Sat Aug 16 2003 Steve Dickson <SteveD@RedHat.com> 1.423 +- upgraded to 3.0.9 1.424 +- added quota-3.09-root_sbindir.patch 1.425 + 1.426 +* Sun Aug 10 2003 Elliot Lee <sopwith@redhat.com> 3.06-11 1.427 +- Rebuild 1.428 + 1.429 +* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 1.430 +- rebuilt 1.431 + 1.432 +* Tue May 27 2003 Steve Dickson <SteveD@RedHat.com> 1.433 +- rebuilt for 7.3 errata 1.434 + 1.435 +* Tue Feb 25 2003 Elliot Lee <sopwith@redhat.com> 1.436 +- rebuilt 1.437 + 1.438 +* Sun Feb 23 2003 Tim Powers <timp@redhat.com> 1.439 +- add buildprereq on tcp_wrappers 1.440 + 1.441 +* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 1.442 +- rebuilt 1.443 + 1.444 +* Mon Nov 18 2002 Tim Powers <timp@redhat.com> 1.445 +- rebuild on all arches 1.446 + 1.447 + 1.448 +* Fri Sep 6 2002 Philip Copeland <bryce@redhat.com> 3.06-5 1.449 +- added --with-ext2direct=no to fix #73244 1.450 + without this users with UID's > 65535 will not 1.451 + be able to exist on a quota enabled FS 1.452 + 1.453 +* Wed Aug 7 2002 Philip Copeland <bryce@redhat.com> 3.06-4 1.454 +- Man page change. #60108 1.455 + 1.456 +* Tue Aug 6 2002 Philip Copeland <bryce@redhat.com> 3.06-3 1.457 +- Bah, I'd dropped epoch from the spec file but seems 1.458 + we need this if you want to upgrade as the epoch 1.459 + number has precedence over the version/release 1.460 + numbers. 1.461 + 1.462 +* Wed Jul 17 2002 Philip Copeland <bryce@redhat.com> 3.06-2 1.463 +- Lets stop the makefile from stripping the 1.464 + binaries as thats rpms job (apparently) 1.465 + 1.466 +* Mon Jul 01 2002 Philip Copeland <bryce@redhat.com> 3.06-1 1.467 +- Ditched the 3.01-pre9 src base for 3.06 1.468 + Rebuilt without any patchs 1.469 + 1.470 +============================================================ 1.471 + 1.472 +* Fri Jun 21 2002 Tim Powers <timp@redhat.com> 1.473 +- automated rebuild 1.474 + 1.475 +* Thu May 23 2002 Tim Powers <timp@redhat.com> 1.476 +- automated rebuild 1.477 + 1.478 +* Mon Feb 25 2002 Elliot Lee <sopwith@redhat.com> 1.479 +- IfArch the badkernelinclude patch for ppc-only. 1.480 +- Update to 3.03 1.481 + 1.482 +* Wed Dec 12 2001 Guy Streeter <streeter@redhat.com> 1.483 +- Make #include of kernel header file work on non-x86 1.484 + 1.485 +* Wed Sep 5 2001 Preston Brown <pbrown@redhat.com> 1.486 +- require new initscripts 1.487 + 1.488 +* Thu Aug 30 2001 Preston Brown <pbrown@redhat.com> 1.489 +- fixed bug #52075 (problem with ext2 labels) 1.490 +- backup data files off by default in quotacheck, optional backup flag added 1.491 +- fix bug where giving a bad directory or device would cause 1.492 + quotaon/quotacheck to simulate "-a" behaviour 1.493 +- if a device name (i.e /dev/hda1) is passed, look up the corresponding mount 1.494 + point 1.495 + 1.496 +* Wed Aug 29 2001 Preston Brown <pbrown@redhat.com> 1.497 +- return an error code in more cases in convertquota 1.498 + 1.499 +* Tue Aug 28 2001 Preston Brown <pbrown@redhat.com> 1.500 +- 3.01pre9 1.501 + 1.502 +* Fri Jul 20 2001 Preston Brown <pbrown@redhat.com> 1.503 +- more cleanups on 3.01pre8 1.504 + 1.505 +* Mon Jul 2 2001 Preston Brown <pbrown@redhat.com> 1.506 +- 3.01 version, everything has changed again. :( 1.507 + 1.508 +* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com> 1.509 +- Bump release + rebuild. 1.510 + 1.511 +* Fri Mar 30 2001 Preston Brown <pbrown@redhat.com> 1.512 +- use rpc.rquotad from here again (#33738) 1.513 + 1.514 +* Thu Mar 15 2001 Preston Brown <pbrown@redhat.com> 1.515 +- enable ALT_FORMAT for edquota 1.516 + 1.517 +* Tue Mar 13 2001 Preston Brown <pbrown@redhat.com> 1.518 +- I broke passing devices on the cmd line. Fixed. 1.519 + 1.520 +* Fri Mar 09 2001 Preston Brown <pbrown@redhat.com> 1.521 +- quota 3.00 is required by recent kernel 2.4 changes 1.522 +- no warnquota included this time, not yet ported 1.523 +- quite a bit of work on quotacheck to make is backwards compatible 1.524 +- we will likely go back to "quota 2.00" as these projects merge... 1.525 + 1.526 +* Fri Feb 09 2001 Florian La Roche <Florian.LaRoche@redhat.de> 1.527 +- use "rm -f" instead of only "rm" 1.528 + 1.529 +* Wed Feb 7 2001 Preston Brown <pbrown@redhat.com> 1.530 +- fix quotacheck man page for -a option (#26380) 1.531 + 1.532 +* Thu Feb 1 2001 Preston Brown <pbrown@redhat.com> 1.533 +- 2.00 final, rolls in pretty much all our patches. :) 1.534 +- fix reporting of in use dquot entries from quotastats 1.535 +- change repquota man page to fix documentation of -v (#10330) 1.536 +- include warnquota.conf 1.537 + 1.538 +* Mon Nov 20 2000 Bill Nottingham <notting@redhat.com> 1.539 +- fix ia64 build 1.540 + 1.541 +* Mon Aug 21 2000 Jeff Johnson <jbj@redhat.com> 1.542 +- add LABEL=foo support (#16390). 1.543 + 1.544 +* Thu Jul 27 2000 Jeff Johnson <jbj@redhat.com> 1.545 +- remote NFS quotas with different blocksize converted incorrectly (#11932). 1.546 + 1.547 +* Wed Jul 12 2000 Prospector <bugzilla@redhat.com> 1.548 +- automatic rebuild 1.549 + 1.550 +* Thu Jun 15 2000 Jeff Johnson <jbj@redhat.com> 1.551 +- FHS packaging. 1.552 + 1.553 +* Wed May 10 2000 Jeff Johnson <jbj@redhat.com> 1.554 +- apply patch5 (H.J. Lu) 1.555 + 1.556 +* Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com> 1.557 +- fix description 1.558 +- man pages are compressed 1.559 + 1.560 +* Tue Jan 18 2000 Preston Brown <pbrown@redhat.com> 1.561 +- quota 2.00 series 1.562 +- removed unnecessary patches 1.563 + 1.564 +* Thu Aug 5 1999 Jeff Johnson <jbj@redhat.com> 1.565 +- fix man page FUD (#4369). 1.566 + 1.567 +* Thu May 13 1999 Peter Hanecak <hanecak@megaloman.sk> 1.568 +- changes to allow non-root users to build too (Makefile patch, %%attr) 1.569 + 1.570 +* Tue Apr 13 1999 Jeff Johnson <jbj@redhat.com> 1.571 +- fix for sparc64 quotas (#2147) 1.572 + 1.573 +* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 1.574 +- auto rebuild in the new build environment (release 5) 1.575 + 1.576 +* Mon Dec 28 1998 Cristian Gafton <gafton@redhat.com> 1.577 +- don't install rpc.rquotad - we will use the one from the knfsd package 1.578 + instead 1.579 + 1.580 +* Thu Dec 17 1998 Jeff Johnson <jbj@redhat.com> 1.581 +- merge ultrapenguin 1.1.9 changes. 1.582 + 1.583 +* Thu May 07 1998 Prospector System <bugs@redhat.com> 1.584 +- translations modified for de, fr, tr 1.585 + 1.586 +* Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com> 1.587 +- removed patch for mntent 1.588 + 1.589 +* Fri Mar 27 1998 Jakub Jelinek <jj@ultra.linux.cz> 1.590 +- updated to quota 1.66 1.591 + 1.592 +* Tue Jan 13 1998 Erik Troan <ewt@redhat.com> 1.593 +- builds rquotad 1.594 +- installs rpc.rquotad.8 symlink 1.595 + 1.596 +* Mon Oct 20 1997 Erik Troan <ewt@redhat.com> 1.597 +- removed /usr/include/rpcsvc/* from filelist 1.598 +- uses a buildroot and %%attr 1.599 + 1.600 +* Thu Jun 19 1997 Erik Troan <ewt@redhat.com> 1.601 +- built against glibc 1.602 + 1.603 +* Tue Mar 25 1997 Erik Troan <ewt@redhat.com> 1.604 +- Moved /usr/sbin/quota to /usr/bin/quota