diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-12-29 09:46:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-12-29 09:46:04 +0000 |
commit | 92ec7a24fb45149e646a27e9a1c5abb1b553211c (patch) | |
tree | b2903db3995146997800c0ccc22e52e5621fccfa /net-fs/nfs-utils | |
parent | Version bump #197336 by Francisco Javier. Tweak nfs init.d needs based on ex... (diff) | |
download | gentoo-2-92ec7a24fb45149e646a27e9a1c5abb1b553211c.tar.gz gentoo-2-92ec7a24fb45149e646a27e9a1c5abb1b553211c.tar.bz2 gentoo-2-92ec7a24fb45149e646a27e9a1c5abb1b553211c.zip |
Make sure we check for "nfs" and not "nfsd" when doing client filesystem setup.
(Portage version: 2.1.4_rc11)
Diffstat (limited to 'net-fs/nfs-utils')
-rw-r--r-- | net-fs/nfs-utils/ChangeLog | 5 | ||||
-rwxr-xr-x | net-fs/nfs-utils/files/nfsmount.initd | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-fs/nfs-utils/ChangeLog b/net-fs/nfs-utils/ChangeLog index 0a195c2579c3..811f4ca288b5 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-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.111 2007/12/29 09:33:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.112 2007/12/29 09:46:03 vapier Exp $ + + 29 Dec 2007; Mike Frysinger <vapier@gentoo.org> files/nfsmount.initd: + Make sure we check for "nfs" and not "nfsd" when doing client filesystem setup. *nfs-utils-1.1.1 (29 Dec 2007) diff --git a/net-fs/nfs-utils/files/nfsmount.initd b/net-fs/nfs-utils/files/nfsmount.initd index d6a7191f5133..6d9e1b3446f8 100755 --- a/net-fs/nfs-utils/files/nfsmount.initd +++ b/net-fs/nfs-utils/files/nfsmount.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.4 2007/08/16 23:35:19 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.5 2007/12/29 09:46:04 vapier Exp $ [ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs @@ -23,7 +23,7 @@ start() { fi # Make sure nfs support is loaded in the kernel #64709 - if [ -e /proc/modules ] && ! grep -qs nfsd /proc/filesystems ; then + if [ -e /proc/modules ] && ! grep -qs 'nfs$' /proc/filesystems ; then modprobe -q nfs fi |