OBS User unknown 2008-02-15 00:35:17 +00:00 committed by Git OBS Bridge
parent bc6f33cc3e
commit 2f57cfb321
3 changed files with 170 additions and 127 deletions

33
nfs-utils-o_create-mode Normal file
View File

@ -0,0 +1,33 @@
From: Jeff Mahoney <jeffm@suse.com>
Subject: [PATCH] nfs-utils: open with O_CREAT needs valid mode
This patch uses a valid mode to avoid an assertion check in STABLE.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
---
nfs-utils-1.1.0/support/nfs/fstab.c | 2 +-
nfs-utils-1.1.0/support/nfs/xio.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- nfs-utils-1.1.0.orig/support/nfs/fstab.c 2007-05-11 05:40:57.000000000 +0200
+++ nfs-utils-1.1.0/support/nfs/fstab.c 2008-02-13 20:49:37.689134000 +0100
@@ -342,7 +342,7 @@ lock_mtab (void) {
sprintf(linktargetfile, MOUNTLOCK_LINKTARGET, getpid ());
- i = open (linktargetfile, O_WRONLY|O_CREAT, 0);
+ i = open (linktargetfile, O_WRONLY|O_CREAT, 0600);
if (i < 0) {
int errsv = errno;
/* linktargetfile does not exist (as a file)
--- nfs-utils-1.1.0.orig/support/nfs/xio.c 2007-05-11 05:40:57.000000000 +0200
+++ nfs-utils-1.1.0/support/nfs/xio.c 2008-02-13 20:53:03.611009000 +0100
@@ -57,7 +57,7 @@ xflock(char *fname, char *type)
struct flock fl = { readonly? F_RDLCK : F_WRLCK, SEEK_SET, 0, 0, 0 };
int fd;
- if ((fd = open(fname, readonly? O_RDONLY : (O_RDWR|O_CREAT))) < 0) {
+ if ((fd = open(fname, readonly? O_RDONLY : (O_RDWR|O_CREAT), 0600)) < 0) {
xlog(L_WARNING, "could not open %s for locking", fname);
return -1;
}

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Feb 13 21:04:46 CET 2008 - jeffm@suse.com
- Cleaned up open(O_CREAT) without file permissions.
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 17 23:19:36 CET 2007 - nfbrown@suse.de Mon Dec 17 23:19:36 CET 2007 - nfbrown@suse.de
@ -387,17 +392,17 @@ Mon Jul 21 17:04:00 CEST 2003 - agruen@suse.de
- Switch to officially reserved bit flag for `no_acl' export - Switch to officially reserved bit flag for `no_acl' export
option: the previous bit was already allocated. option: the previous bit was already allocated.
-------------------------------------------------------------------
Tue Jul 8 14:33:57 CEST 2003 - okir@suse.de
- Fixed off-by-one overflow (#27744)
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 8 16:00:01 CEST 2003 - agruen@suse.de Tue Jul 8 16:00:01 CEST 2003 - agruen@suse.de
- Add `no_acl' export option, replaces the nfs_permission_mode - Add `no_acl' export option, replaces the nfs_permission_mode
nfsd module parameter. nfsd module parameter.
-------------------------------------------------------------------
Tue Jul 8 14:33:57 CEST 2003 - okir@suse.de
- Fixed off-by-one overflow (#27744)
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jun 12 07:19:59 CEST 2003 - kukuk@suse.de Thu Jun 12 07:19:59 CEST 2003 - kukuk@suse.de

View File

@ -1,7 +1,7 @@
# #
# spec file for package nfs-utils (Version 1.1.0) # spec file for package nfs-utils (Version 1.1.0)
# #
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. # Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine # This file and all modifications and additions to the pristine
# package are under the same license as the package itself. # package are under the same license as the package itself.
# #
@ -10,12 +10,13 @@
# norootforbuild # norootforbuild
Name: nfs-utils Name: nfs-utils
BuildRequires: e2fsprogs-devel gcc-c++ krb5-devel libevent librpcsecgss nfsidmap-devel pkgconfig tcpd-devel BuildRequires: e2fsprogs-devel gcc-c++ krb5-devel libevent librpcsecgss nfsidmap-devel pkgconfig tcpd-devel
Url: http://nfs.sourceforge.net Url: http://nfs.sourceforge.net
Summary: Support Utilities for Kernel nfsd Summary: Support Utilities for Kernel nfsd
Version: 1.1.0 Version: 1.1.0
Release: 10 Release: 11
Group: Productivity/Networking/NFS Group: Productivity/Networking/NFS
License: GPL v2 or later License: GPL v2 or later
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -33,6 +34,7 @@ Source7: fw-client
Source8: fw-server Source8: fw-server
Patch0: nfs-utils-largefiles.patch Patch0: nfs-utils-largefiles.patch
Patch1: nfs-utils-1.0.7-bind-syntax.patch Patch1: nfs-utils-1.0.7-bind-syntax.patch
Patch2: nfs-utils-o_create-mode
%description %description
This package contains the NFS utilities. You can tune the number of This package contains the NFS utilities. You can tune the number of
@ -105,6 +107,7 @@ Authors:
%setup -q -n nfs-utils-%{version} -a 1 %setup -q -n nfs-utils-%{version} -a 1
%patch0 -p1 %patch0 -p1
%patch1 -p1 %patch1 -p1
%patch2 -p1
cp %{S:6} . cp %{S:6} .
%build %build
@ -248,33 +251,35 @@ rm -rf $RPM_BUILD_ROOT
%doc nfs/*.html nfs/*.ps linux-nfs/* README.NFSv4 %doc nfs/*.html nfs/*.ps linux-nfs/* README.NFSv4
%changelog %changelog
* Mon Dec 17 2007 - nfbrown@suse.de * Wed Feb 13 2008 jeffm@suse.com
- Cleaned up open(O_CREAT) without file permissions.
* Tue Dec 18 2007 nfbrown@suse.de
- Fix sed script used to create bind mounts for NFSv4 export - Fix sed script used to create bind mounts for NFSv4 export
(#279665) (#279665)
- Fail nfs.init if portmap is not running. Normally it will be, - Fail nfs.init if portmap is not running. Normally it will be,
but if it isn't nfs can fail strangely. (#325763) but if it isn't nfs can fail strangely. (#325763)
* Mon Dec 17 2007 - nfbrown@suse.de * Mon Dec 17 2007 nfbrown@suse.de
- Add SuSEfirewall2 config files for nfs-client and nfs-kernel-server - Add SuSEfirewall2 config files for nfs-client and nfs-kernel-server
(#247354) (#247354)
* Mon Nov 12 2007 - ro@suse.de * Mon Nov 12 2007 ro@suse.de
- use navigation icons from latex2html in nfs-utils-doc package - use navigation icons from latex2html in nfs-utils-doc package
(#116355) (#116355)
* Fri Sep 14 2007 - ro@suse.de * Fri Sep 14 2007 ro@suse.de
- use "--no-nfs-version 4" for nfsd and mountd if - use "--no-nfs-version 4" for nfsd and mountd if
NFS4_SUPPORT is set to "no" (#308661) NFS4_SUPPORT is set to "no" (#308661)
* Wed Sep 12 2007 - ro@suse.de * Wed Sep 12 2007 ro@suse.de
- drop conflicts with nfs-server (userspace) in nfs-client package - drop conflicts with nfs-server (userspace) in nfs-client package
showmount has been removed there (#309782) showmount has been removed there (#309782)
* Thu Jul 19 2007 - ro@suse.de * Thu Jul 19 2007 ro@suse.de
- added README.NFSv4 (#182775) - added README.NFSv4 (#182775)
* Tue Jul 17 2007 - meissner@suse.de * Tue Jul 17 2007 meissner@suse.de
- buildrequire nfsidmap-devel - buildrequire nfsidmap-devel
* Fri Jun 22 2007 - ro@suse.de * Fri Jun 22 2007 ro@suse.de
- added split-provides for nfs-client to get nfs-client installed - added split-provides for nfs-client to get nfs-client installed
on update from older versions where this was in aaa_base (#286743) on update from older versions where this was in aaa_base (#286743)
* Mon Jun 11 2007 - mkoenig@suse.de * Mon Jun 11 2007 mkoenig@suse.de
- add Obsoletes - add Obsoletes
* Tue Jun 05 2007 - mkoenig@suse.de * Tue Jun 05 2007 mkoenig@suse.de
- update to version 1.1.0: - update to version 1.1.0:
- package mount.nfs, umount.nfs to replace dropped nfs code - package mount.nfs, umount.nfs to replace dropped nfs code
from util-linux mount. from util-linux mount.
@ -288,7 +293,7 @@ rm -rf $RPM_BUILD_ROOT
nfsutils (last used 2001) nfsutils (last used 2001)
knfsd (last used 2000) knfsd (last used 2000)
linuxnfs (last used 1999) linuxnfs (last used 1999)
* Tue Feb 27 2007 - ro@suse.de * Tue Feb 27 2007 ro@suse.de
- update to 1.0.12 - update to 1.0.12
- Fix -n option to mountd - Fix -n option to mountd
- Document sensitive gids - Document sensitive gids
@ -296,14 +301,14 @@ rm -rf $RPM_BUILD_ROOT
nfs-utils-anon-uid32.patch nfs-utils-anon-uid32.patch
- added e2fsprogs-devel (for libblkid) - added e2fsprogs-devel (for libblkid)
- nhfsXXX binaries and manpages have been removed upstream - nhfsXXX binaries and manpages have been removed upstream
* Thu Jan 11 2007 - ro@suse.de * Thu Jan 11 2007 ro@suse.de
- moved omc xml file to /usr/share/omc and removed config tag - moved omc xml file to /usr/share/omc and removed config tag
* Mon Jan 08 2007 - ro@suse.de * Mon Jan 08 2007 ro@suse.de
- move srvinfo.d to svcinfo.d (typo in fate entry) - move srvinfo.d to svcinfo.d (typo in fate entry)
- Added handling for NFSv4 bind mounts in init script (#229583) - Added handling for NFSv4 bind mounts in init script (#229583)
* Mon Dec 18 2006 - ro@suse.de * Mon Dec 18 2006 ro@suse.de
- added nfsserver.xml to /etc/omc/srvinfo.d (fate#301835) - added nfsserver.xml to /etc/omc/srvinfo.d (fate#301835)
* Tue Aug 08 2006 - ro@suse.de * Tue Aug 08 2006 ro@suse.de
- update to 1.0.10 - update to 1.0.10
remove upstreamed patches: remove upstreamed patches:
- nfs-utils-1.0.6-anon-exports.patch - nfs-utils-1.0.6-anon-exports.patch
@ -326,261 +331,261 @@ rm -rf $RPM_BUILD_ROOT
redone patches: redone patches:
- nfs-utils-noroot.patch (was: norootforbuild.diff) - nfs-utils-noroot.patch (was: norootforbuild.diff)
- pass -fPIE to configure instead of patch - pass -fPIE to configure instead of patch
* Thu Jul 13 2006 - aj@suse.de * Thu Jul 13 2006 aj@suse.de
- Fix off-by-one error in rpcgen. - Fix off-by-one error in rpcgen.
* Fri Jun 23 2006 - ro@suse.de * Fri Jun 23 2006 ro@suse.de
- find kerberos ticket files even if /tmp on reiser (#187775) - find kerberos ticket files even if /tmp on reiser (#187775)
* Wed Jun 21 2006 - ro@suse.de * Wed Jun 21 2006 ro@suse.de
- fix /etc/gssapi_mech.conf for lib64 platforms (#186954) - fix /etc/gssapi_mech.conf for lib64 platforms (#186954)
* Mon Jun 12 2006 - ro@suse.de * Mon Jun 12 2006 ro@suse.de
- added support for type 3 filehandles to mountd (#182552) - added support for type 3 filehandles to mountd (#182552)
* Fri Jun 02 2006 - ro@suse.de * Fri Jun 02 2006 ro@suse.de
- disable v4 support in rcnfsserver if NFS4_SUPPORT is - disable v4 support in rcnfsserver if NFS4_SUPPORT is
not set to "yes" (#178633) not set to "yes" (#178633)
* Fri Jun 02 2006 - ro@suse.de * Fri Jun 02 2006 ro@suse.de
- added fix for 64bit bigendian platforms in gssd (#172605) - added fix for 64bit bigendian platforms in gssd (#172605)
* Tue May 02 2006 - okir@suse.de * Tue May 02 2006 okir@suse.de
- gracefully handle repeated "rcidmapd stop" calls (#169087) - gracefully handle repeated "rcidmapd stop" calls (#169087)
* Mon Apr 24 2006 - ro@suse.de * Mon Apr 24 2006 ro@suse.de
- nfs-server rc-script: make force-reload do as reload does - nfs-server rc-script: make force-reload do as reload does
(#167152) (#167152)
- nfs-server rc-script: reload idmapd if NFSV4 is on (#167016) - nfs-server rc-script: reload idmapd if NFSV4 is on (#167016)
* Thu Mar 23 2006 - okir@suse.de * Thu Mar 23 2006 okir@suse.de
- Make gssd and svcgssd scripts mount rpc_pipefs if not there - Make gssd and svcgssd scripts mount rpc_pipefs if not there
(#158000) and added "Should-start: krb5kdc" to make sure (#158000) and added "Should-start: krb5kdc" to make sure
the KDC is started first if running on the same server (#159980) the KDC is started first if running on the same server (#159980)
* Tue Jan 31 2006 - okir@suse.de * Tue Jan 31 2006 okir@suse.de
- Load RPCSEC_GSS kernel modules in rcgssd/rcsvcgssd init - Load RPCSEC_GSS kernel modules in rcgssd/rcsvcgssd init
scripts (#142352) scripts (#142352)
- Enable NFSv4 by default - Enable NFSv4 by default
* Fri Jan 27 2006 - mls@suse.de * Fri Jan 27 2006 mls@suse.de
- converted neededforbuild to BuildRequires - converted neededforbuild to BuildRequires
* Wed Jan 25 2006 - ro@suse.de * Wed Jan 25 2006 ro@suse.de
- nfsserver rcscript: only mount nfsdfs if not mounted already - nfsserver rcscript: only mount nfsdfs if not mounted already
* Tue Jan 17 2006 - schwab@suse.de * Tue Jan 17 2006 schwab@suse.de
- Don't strip binaries. - Don't strip binaries.
* Mon Dec 19 2005 - mmj@suse.de * Mon Dec 19 2005 mmj@suse.de
- fix filelist - fix filelist
* Mon Nov 28 2005 - ro@suse.de * Mon Nov 28 2005 ro@suse.de
- fix init scripts: in the stop case, a not running service - fix init scripts: in the stop case, a not running service
is not an error (#134904) is not an error (#134904)
* Mon Nov 14 2005 - ro@suse.de * Mon Nov 14 2005 ro@suse.de
- packaging /var/lib/nfs/v4recovery directory (#133502) - packaging /var/lib/nfs/v4recovery directory (#133502)
* Thu Sep 01 2005 - okir@suse.de * Thu Sep 01 2005 okir@suse.de
- packaging /var/lib/nfs/rpc_pipefs directory (#114103) - packaging /var/lib/nfs/rpc_pipefs directory (#114103)
* Thu Aug 25 2005 - ro@suse.de * Thu Aug 25 2005 ro@suse.de
- modify nfs-server script to support uml case (#86624) - modify nfs-server script to support uml case (#86624)
* Fri Aug 19 2005 - okir@suse.de * Fri Aug 19 2005 okir@suse.de
- added NFS4_SUPPORT and NFS_SECURITY_GSS to sysconfig.nfs - added NFS4_SUPPORT and NFS_SECURITY_GSS to sysconfig.nfs
- updated the idmapd script so it honors NFS4_SUPPORT - updated the idmapd script so it honors NFS4_SUPPORT
- updated gssd script so it honors NFS_SECURITY_GSS - updated gssd script so it honors NFS_SECURITY_GSS
- added svcgssd script - added svcgssd script
* Mon Jun 20 2005 - ro@suse.de * Mon Jun 20 2005 ro@suse.de
- fix in init-script (do not try unmount if not mounted) (#91460) - fix in init-script (do not try unmount if not mounted) (#91460)
* Mon Jun 06 2005 - schwab@suse.de * Mon Jun 06 2005 schwab@suse.de
- Install correct init script. - Install correct init script.
* Fri Jun 03 2005 - kukuk@suse.de * Fri Jun 03 2005 kukuk@suse.de
- Compile with -fpie/-pie - Compile with -fpie/-pie
* Tue May 31 2005 - okir@suse.de * Tue May 31 2005 okir@suse.de
- Enabled NFSv4 and RPCSEC_GSS support - Enabled NFSv4 and RPCSEC_GSS support
* Tue Apr 19 2005 - ro@suse.de * Tue Apr 19 2005 ro@suse.de
- do not warn about sync/async for readonly exports (#78369) - do not warn about sync/async for readonly exports (#78369)
* Mon Apr 04 2005 - ro@suse.de * Mon Apr 04 2005 ro@suse.de
- make it build with gcc4 - make it build with gcc4
* Sat Feb 05 2005 - schwab@suse.de * Sat Feb 05 2005 schwab@suse.de
- Update to nfs-utils 1.0.7. - Update to nfs-utils 1.0.7.
- Make non-anonymous exports work again. - Make non-anonymous exports work again.
- Use BuildRoot. - Use BuildRoot.
* Mon Dec 13 2004 - ro@suse.de * Mon Dec 13 2004 ro@suse.de
- update to 1.0.7-pre2 (use 1.0.6.2 as package version) - update to 1.0.7-pre2 (use 1.0.6.2 as package version)
- disable gss and nfsv4 for now - disable gss and nfsv4 for now
* Thu Dec 09 2004 - okir@suse.de * Thu Dec 09 2004 okir@suse.de
- make anonymous exports work again (#46918) - make anonymous exports work again (#46918)
* Mon Aug 30 2004 - ro@suse.de * Mon Aug 30 2004 ro@suse.de
- added sysconfig variable to allow running mountd on a - added sysconfig variable to allow running mountd on a
defined port defined port
* Mon Aug 30 2004 - okir@suse.de * Mon Aug 30 2004 okir@suse.de
- Fix to prevent mountd from crashing on kernel upcalls - Fix to prevent mountd from crashing on kernel upcalls
* Fri Aug 27 2004 - okir@suse.de * Fri Aug 27 2004 okir@suse.de
- Fix a permission problem after using exportfs -u - Fix a permission problem after using exportfs -u
* Tue Aug 24 2004 - ro@suse.de * Tue Aug 24 2004 ro@suse.de
- remove "exportfs -au" from rcnfsserver stop - remove "exportfs -au" from rcnfsserver stop
(kernel zaps table on last server exit anyway) (#44049) (kernel zaps table on last server exit anyway) (#44049)
* Thu Jun 24 2004 - ro@suse.de * Thu Jun 24 2004 ro@suse.de
- added patch from okir to use nobody:nogroup again by default - added patch from okir to use nobody:nogroup again by default
for anonymous (#42288) for anonymous (#42288)
* Tue Jun 22 2004 - ro@suse.de * Tue Jun 22 2004 ro@suse.de
- remove nfslock start script - remove nfslock start script
- remove nfslock dependency - remove nfslock dependency
* Thu Jun 17 2004 - ro@suse.de * Fri Jun 18 2004 ro@suse.de
- mount nfsd filesystem if possible (#41955) - mount nfsd filesystem if possible (#41955)
* Wed Mar 31 2004 - mmj@suse.de * Wed Mar 31 2004 mmj@suse.de
- Remove unpackaged files - Remove unpackaged files
* Wed Mar 31 2004 - mmj@suse.de * Wed Mar 31 2004 mmj@suse.de
- Move sm-notify to util-linux [#36737] - Move sm-notify to util-linux [#36737]
* Fri Mar 26 2004 - ro@suse.de * Fri Mar 26 2004 ro@suse.de
- remove rpc.statd completely - remove rpc.statd completely
- add sm-notify and call it first in nfslock script (#36737) - add sm-notify and call it first in nfslock script (#36737)
* Tue Feb 03 2004 - ro@suse.de * Tue Feb 03 2004 ro@suse.de
- disable rquotad already in configure - disable rquotad already in configure
(no need to compile it, if we only remove it later) (no need to compile it, if we only remove it later)
* Tue Jan 20 2004 - okir@suse.de * Tue Jan 20 2004 okir@suse.de
- Include patch that allows Sun boxes to mount large files - Include patch that allows Sun boxes to mount large files
* Mon Sep 15 2003 - ro@suse.de * Mon Sep 15 2003 ro@suse.de
- update to version 1.0.6 to fix a possible segfault in statd - update to version 1.0.6 to fix a possible segfault in statd
- support for 2.6 kernels - support for 2.6 kernels
* Fri Aug 29 2003 - ro@suse.de * Fri Aug 29 2003 ro@suse.de
- fix hed/tail calling syntax (#29644) - fix hed/tail calling syntax (#29644)
* Mon Aug 25 2003 - ro@suse.de * Mon Aug 25 2003 ro@suse.de
- add restart_on_update/stop_on_removal macros - add restart_on_update/stop_on_removal macros
* Fri Aug 15 2003 - ro@suse.de * Fri Aug 15 2003 ro@suse.de
- added sysconfig metadata (#28908) - added sysconfig metadata (#28908)
* Tue Aug 05 2003 - ro@suse.de * Tue Aug 05 2003 ro@suse.de
- fix compile for rquotad (unused anyway - fix compile for rquotad (unused anyway
* Thu Jul 31 2003 - ro@suse.de * Thu Jul 31 2003 ro@suse.de
- add support for STATD_HOSTNAME (#28201) - add support for STATD_HOSTNAME (#28201)
* Mon Jul 28 2003 - ro@suse.de * Mon Jul 28 2003 ro@suse.de
- update to 1.0.5 and adapt patches - update to 1.0.5 and adapt patches
- overflow patch already included - overflow patch already included
- part of acl patch already included - part of acl patch already included
* Mon Jul 21 2003 - agruen@suse.de * Mon Jul 21 2003 agruen@suse.de
- Switch to officially reserved bit flag for `no_acl' export - Switch to officially reserved bit flag for `no_acl' export
option: the previous bit was already allocated. option: the previous bit was already allocated.
* Tue Jul 08 2003 - agruen@suse.de * Tue Jul 08 2003 agruen@suse.de
- Add `no_acl' export option, replaces the nfs_permission_mode - Add `no_acl' export option, replaces the nfs_permission_mode
nfsd module parameter. nfsd module parameter.
* Tue Jul 08 2003 - okir@suse.de * Tue Jul 08 2003 okir@suse.de
- Fixed off-by-one overflow (#27744) - Fixed off-by-one overflow (#27744)
* Thu Jun 12 2003 - kukuk@suse.de * Thu Jun 12 2003 kukuk@suse.de
- Add /var/lib/nfs to filelist - Add /var/lib/nfs to filelist
* Tue May 13 2003 - ro@suse.de * Tue May 13 2003 ro@suse.de
- fix file list - fix file list
* Fri Mar 28 2003 - ro@suse.de * Fri Mar 28 2003 ro@suse.de
- update to 1.0.3 - update to 1.0.3
* Wed Jan 08 2003 - ro@suse.de * Wed Jan 08 2003 ro@suse.de
- added sysconfig metadata (#22663) - added sysconfig metadata (#22663)
* Fri Sep 06 2002 - ro@suse.de * Fri Sep 06 2002 ro@suse.de
- rcnfsserver: moved ypbind to should-start (#18952) - rcnfsserver: moved ypbind to should-start (#18952)
- rcnfslock: fixed typo killing daemons on "status" (#19046) - rcnfslock: fixed typo killing daemons on "status" (#19046)
* Tue Sep 03 2002 - ro@suse.de * Tue Sep 03 2002 ro@suse.de
- changed nfslock from should-start to required-start in - changed nfslock from should-start to required-start in
nfsserver rc script (is in the same package anyway) nfsserver rc script (is in the same package anyway)
* Mon Aug 26 2002 - okir@suse.de * Mon Aug 26 2002 okir@suse.de
- Fixed minor manpage issue (#18326) - Fixed minor manpage issue (#18326)
* Thu Aug 22 2002 - ro@suse.de * Thu Aug 22 2002 ro@suse.de
- fixed symlink rcnfslock (#18171) - fixed symlink rcnfslock (#18171)
* Wed Aug 07 2002 - ro@suse.de * Wed Aug 07 2002 ro@suse.de
- move statd and lockd to their own startscript (#17425) - move statd and lockd to their own startscript (#17425)
* Thu Aug 01 2002 - ro@suse.de * Thu Aug 01 2002 ro@suse.de
- update to 1.0.1 - update to 1.0.1
- added prereqs - added prereqs
* Thu Jul 25 2002 - okir@suse.de * Thu Jul 25 2002 okir@suse.de
- Help users who do not configure a domain name: when - Help users who do not configure a domain name: when
sending out NSM_NOTIFY strip off .local suffix if sending out NSM_NOTIFY strip off .local suffix if
present. present.
* Mon Jul 22 2002 - okir@suse.de * Mon Jul 22 2002 okir@suse.de
- partial fix for http://bugzilla.suse.de/show_bug.cgi?id=16957 - partial fix for http://bugzilla.suse.de/show_bug.cgi?id=16957
(missing NSM_NOTIFY call when rebooting). (missing NSM_NOTIFY call when rebooting).
* Tue Jul 16 2002 - kukuk@suse.de * Tue Jul 16 2002 kukuk@suse.de
- Don't source rc.config (#17025) - Don't source rc.config (#17025)
* Fri Jun 14 2002 - ro@suse.de * Fri Jun 14 2002 ro@suse.de
- run suse_update_config - run suse_update_config
* Tue Feb 26 2002 - ro@suse.de * Tue Feb 26 2002 ro@suse.de
- fixed wrong quotes in init-script (#13939) - fixed wrong quotes in init-script (#13939)
* Wed Feb 06 2002 - ro@suse.de * Wed Feb 06 2002 ro@suse.de
- ignore returncodes from killing statd and lockd (#13072) - ignore returncodes from killing statd and lockd (#13072)
* Wed Feb 06 2002 - ro@suse.de * Wed Feb 06 2002 ro@suse.de
- sysconfig/nfs-server -> sysconfig/nfs - sysconfig/nfs-server -> sysconfig/nfs
* Wed Jan 09 2002 - ro@suse.de * Wed Jan 09 2002 ro@suse.de
- removed variable NFS_SERVER (#12742) - removed variable NFS_SERVER (#12742)
- moved USE_KERNEL_NFSD_NUMBER to /etc/sysconfig/nfs-server - moved USE_KERNEL_NFSD_NUMBER to /etc/sysconfig/nfs-server
* Wed Sep 26 2001 - ro@suse.de * Wed Sep 26 2001 ro@suse.de
- up to 0.3.3 - up to 0.3.3
many fixes to canonicalize hostnames in exports many fixes to canonicalize hostnames in exports
* Fri Aug 24 2001 - ro@suse.de * Fri Aug 24 2001 ro@suse.de
- removed nfs-version 3 detection in start-script, all kernels - removed nfs-version 3 detection in start-script, all kernels
that have kernel nfsd support usually do have nfsd-v3 support that have kernel nfsd support usually do have nfsd-v3 support
and detection would require at least a 5 sec wait in the script and detection would require at least a 5 sec wait in the script
* Tue Jul 31 2001 - kukuk@suse.de * Tue Jul 31 2001 kukuk@suse.de
- Fix path to init script in description [Bug #9494] - Fix path to init script in description [Bug #9494]
- Fix comment in runlevel section [Bug #9561] - Fix comment in runlevel section [Bug #9561]
- Make init script LSB conform [Bug #9073] - Make init script LSB conform [Bug #9073]
* Wed Apr 11 2001 - ro@suse.de * Wed Apr 11 2001 ro@suse.de
- lockd only started for 2.2 kernels instead of ignoring error - lockd only started for 2.2 kernels instead of ignoring error
- completed rpc.statd to /sbin move in startscript - completed rpc.statd to /sbin move in startscript
* Mon Mar 12 2001 - ro@suse.de * Mon Mar 12 2001 ro@suse.de
- move rpc.lockd, rpc.statd to /sbin - move rpc.lockd, rpc.statd to /sbin
* Mon Mar 12 2001 - ro@suse.de * Mon Mar 12 2001 ro@suse.de
- update to 0.3.1 - update to 0.3.1
- ignore lockd error messages - ignore lockd error messages
- dump filedescriptors before starting kernel threads - dump filedescriptors before starting kernel threads
* Tue Feb 06 2001 - ro@suse.de * Tue Feb 06 2001 ro@suse.de
- renamed package to nfs-utils - renamed package to nfs-utils
- Obsoletes and Provides nfsutils - Obsoletes and Provides nfsutils
* Fri Jan 12 2001 - ro@suse.de * Fri Jan 12 2001 ro@suse.de
- fixed conflicts: nfs-server (#5548) - fixed conflicts: nfs-server (#5548)
* Thu Jan 11 2001 - ro@suse.de * Fri Jan 12 2001 ro@suse.de
- don't fail if lockd can't be started - don't fail if lockd can't be started
* Wed Dec 06 2000 - bk@suse.de * Wed Dec 06 2000 bk@suse.de
- fix broken symlinks for %%{_mandir}/rpc.{nfs,mount,stat}d.8.gz - fix broken symlinks for %%{_mandir}/rpc.{nfs,mount,stat}d.8.gz
* Tue Nov 28 2000 - kukuk@suse.de * Tue Nov 28 2000 kukuk@suse.de
- Move new initscript to /etc/init.d - Move new initscript to /etc/init.d
* Thu Oct 12 2000 - ro@suse.de * Thu Oct 12 2000 ro@suse.de
- exports.4 should be exports.5 - exports.4 should be exports.5
- removed k-prefix - removed k-prefix
* Thu Oct 12 2000 - ro@suse.de * Thu Oct 12 2000 ro@suse.de
- added exports.4 man-page - added exports.4 man-page
- up to 0.2.1 - up to 0.2.1
* Wed Sep 27 2000 - ro@suse.de * Wed Sep 27 2000 ro@suse.de
- update to 0.2 - update to 0.2
- fix for nfsserver.init (check for v3) - fix for nfsserver.init (check for v3)
* Thu Aug 17 2000 - ro@suse.de * Thu Aug 17 2000 ro@suse.de
- ugraded from knfsd to successor package nfs-utils (v.0.1.9.1) - ugraded from knfsd to successor package nfs-utils (v.0.1.9.1)
* Fri Jul 28 2000 - bjacke@suse.de * Fri Jul 28 2000 bjacke@suse.de
- fixed checkproc call in init script - fixed checkproc call in init script
* Fri Jul 21 2000 - kukuk@suse.de * Fri Jul 21 2000 kukuk@suse.de
- Fix missing format string in syslog call (next rpc.statd security - Fix missing format string in syslog call (next rpc.statd security
problem) problem)
* Wed Jul 19 2000 - kukuk@suse.de * Wed Jul 19 2000 kukuk@suse.de
- Fix problem with NULL h_alias field (rpc.statd security problem) - Fix problem with NULL h_alias field (rpc.statd security problem)
* Thu Jun 22 2000 - kukuk@suse.de * Thu Jun 22 2000 kukuk@suse.de
- Change conflict from itself to nfsserv - Change conflict from itself to nfsserv
* Tue Apr 18 2000 - kukuk@suse.de * Tue Apr 18 2000 kukuk@suse.de
- Fix rcnfsserver link - Fix rcnfsserver link
* Sat Apr 15 2000 - kukuk@suse.de * Sat Apr 15 2000 kukuk@suse.de
- Add rc.config variables and init script from aaa_base - Add rc.config variables and init script from aaa_base
* Wed Feb 16 2000 - kukuk@suse.de * Wed Feb 16 2000 kukuk@suse.de
- Fill out Copyright and Group field - Fill out Copyright and Group field
- Remove rquotad from file list, it is already in the quota - Remove rquotad from file list, it is already in the quota
package [Bug 1571] package [Bug 1571]
* Tue Jan 25 2000 - ro@suse.de * Tue Jan 25 2000 ro@suse.de
- manpages to /usr/share using macro - manpages to /usr/share using macro
* Thu Oct 21 1999 - ro@suse.de * Thu Oct 21 1999 ro@suse.de
- renamed package from linuxnfs to knfsd - renamed package from linuxnfs to knfsd
* Tue Oct 12 1999 - garloff@suse.de * Tue Oct 12 1999 garloff@suse.de
- Fixed filelist (%%ghost) - Fixed filelist (%%ghost)
* Tue Oct 12 1999 - garloff@suse.de * Tue Oct 12 1999 garloff@suse.de
- upgraded to knsfd-1.5.2. Added klockd to file list. - upgraded to knsfd-1.5.2. Added klockd to file list.
Ditto for new /dev/nfsd_netlink. Ditto for new /dev/nfsd_netlink.
* Mon Sep 13 1999 - bs@suse.de * Mon Sep 13 1999 bs@suse.de
- ran old prepare_spec on spec file to switch to new prepare_spec. - ran old prepare_spec on spec file to switch to new prepare_spec.
* Tue Aug 24 1999 - uli@suse.de * Tue Aug 24 1999 uli@suse.de
- added -fsigned-char to CFLAGS (PPC) - added -fsigned-char to CFLAGS (PPC)
* Sat Jul 17 1999 - ro@suse.de * Sat Jul 17 1999 ro@suse.de
- update to 1.4.6 - update to 1.4.6
* Mon Jun 14 1999 - kukuk@suse.de * Mon Jun 14 1999 kukuk@suse.de
- update to version 1.4 - update to version 1.4
* Sun Jun 06 1999 - kukuk@suse.de * Sun Jun 06 1999 kukuk@suse.de
- update to version 1.3.3b - update to version 1.3.3b
* Tue Mar 16 1999 - ro@suse.de * Tue Mar 16 1999 ro@suse.de
- update to version 1.2 - update to version 1.2
* Thu Nov 26 1998 - ro@suse.de * Thu Nov 26 1998 ro@suse.de
- update to 981122 - update to 981122
* Thu Nov 12 1998 - ro@suse.de * Thu Nov 12 1998 ro@suse.de
- use lx_hack - use lx_hack
* Wed Oct 21 1998 - ro@suse.de * Wed Oct 21 1998 ro@suse.de
- added bugfix for statd (by HJL) - added bugfix for statd (by HJL)
* Tue Oct 20 1998 - ro@suse.de * Tue Oct 20 1998 ro@suse.de
- update to knfsd-981014 - update to knfsd-981014
* Mon Sep 28 1998 - ro@suse.de * Mon Sep 28 1998 ro@suse.de
- initial package / for use a 2.1 kernel with knfsd support is needed - initial package / for use a 2.1 kernel with knfsd support is needed