diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-01-31 22:13:56 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-01-31 22:13:56 +0000 |
commit | 4f19f0afc95d297f26506a65fa3a53d7ef01537a (patch) | |
tree | 94961ea942b4acf47a3055ba1307b11d8146aa5d /net-fs | |
parent | Restart rpc.idmapd if nfsd is a module #220747 by Jochen Radmacher. (diff) | |
download | historical-4f19f0afc95d297f26506a65fa3a53d7ef01537a.tar.gz historical-4f19f0afc95d297f26506a65fa3a53d7ef01537a.tar.bz2 historical-4f19f0afc95d297f26506a65fa3a53d7ef01537a.zip |
Add /proc/fs/nfs -> /proc/fs/nfsd fix again.
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/nfs-utils/ChangeLog | 5 | ||||
-rwxr-xr-x | net-fs/nfs-utils/files/nfs.initd | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-fs/nfs-utils/ChangeLog b/net-fs/nfs-utils/ChangeLog index 3554e44f1a82..c1dae1f612c2 100644 --- a/net-fs/nfs-utils/ChangeLog +++ b/net-fs/nfs-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-fs/nfs-utils # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.141 2009/01/31 22:12:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.142 2009/01/31 22:13:56 vapier Exp $ + + 31 Jan 2009; Mike Frysinger <vapier@gentoo.org> files/nfs.initd: + Add /proc/fs/nfs -> /proc/fs/nfsd fix again. 31 Jan 2009; Mike Frysinger <vapier@gentoo.org> files/nfs.initd: Restart rpc.idmapd if nfsd is a module #220747 by Jochen Radmacher. diff --git a/net-fs/nfs-utils/files/nfs.initd b/net-fs/nfs-utils/files/nfs.initd index 9716fdd3a638..e19ad577d0c5 100755 --- a/net-fs/nfs-utils/files/nfs.initd +++ b/net-fs/nfs-utils/files/nfs.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfs.initd,v 1.15 2009/01/31 22:12:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfs.initd,v 1.16 2009/01/31 22:13:56 vapier Exp $ opts="reload" @@ -55,9 +55,9 @@ mount_nfsd() { # This is the new "kernel 2.6 way" to handle the exports file if grep -qs nfsd /proc/filesystems ; then - if ! grep -qs "nfsd /proc/fs/nfs" /proc/mounts ; then + if ! grep -qs "nfsd /proc/fs/nfsd" /proc/mounts ; then ebegin "Mounting nfsd filesystem in /proc" - mount -t nfsd -o nodev,noexec,nosuid nfsd /proc/fs/nfs + mount -t nfsd -o nodev,noexec,nosuid nfsd /proc/fs/nfsd eend $? fi fi |