summaryrefslogtreecommitdiff
path: root/net-fs
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-01-31 22:13:56 +0000
committerMike Frysinger <vapier@gentoo.org>2009-01-31 22:13:56 +0000
commit621696ff2d554401bb4ee78085424390866b3ae3 (patch)
tree3662d71fffc08eb5c70ed2e79eca99ec59a20d2b /net-fs
parentRestart rpc.idmapd if nfsd is a module #220747 by Jochen Radmacher. (diff)
downloadgentoo-2-621696ff2d554401bb4ee78085424390866b3ae3.tar.gz
gentoo-2-621696ff2d554401bb4ee78085424390866b3ae3.tar.bz2
gentoo-2-621696ff2d554401bb4ee78085424390866b3ae3.zip
Add /proc/fs/nfs -> /proc/fs/nfsd fix again.
Diffstat (limited to 'net-fs')
-rw-r--r--net-fs/nfs-utils/ChangeLog5
-rwxr-xr-xnet-fs/nfs-utils/files/nfs.initd6
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