Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-fs/nfs-utils/files: nfsmount.initd
Date: Sat, 29 Dec 2007 09:46:12
Message-Id: E1J8YGa-0008Dt-N6@stork.gentoo.org
1 vapier 07/12/29 09:46:04
2
3 Modified: nfsmount.initd
4 Log:
5 Make sure we check for "nfs" and not "nfsd" when doing client filesystem setup.
6 (Portage version: 2.1.4_rc11)
7
8 Revision Changes Path
9 1.5 net-fs/nfs-utils/files/nfsmount.initd
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd?r1=1.4&r2=1.5
14
15 Index: nfsmount.initd
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- nfsmount.initd 16 Aug 2007 23:35:19 -0000 1.4
22 +++ nfsmount.initd 29 Dec 2007 09:46:04 -0000 1.5
23 @@ -1,7 +1,7 @@
24 #!/sbin/runscript
25 # Copyright 1999-2007 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.4 2007/08/16 23:35:19 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.5 2007/12/29 09:46:04 vapier Exp $
29
30 [ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs
31
32 @@ -23,7 +23,7 @@
33 fi
34
35 # Make sure nfs support is loaded in the kernel #64709
36 - if [ -e /proc/modules ] && ! grep -qs nfsd /proc/filesystems ; then
37 + if [ -e /proc/modules ] && ! grep -qs 'nfs$' /proc/filesystems ; then
38 modprobe -q nfs
39 fi
40
41
42
43
44 --
45 gentoo-commits@g.o mailing list