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: Tue, 22 Apr 2008 07:43:19
Message-Id: E1JoD9o-0003Zi-N4@stork.gentoo.org
1 vapier 08/04/22 07:43:16
2
3 Modified: nfsmount.initd
4 Log:
5 fix operator typo #218713
6 (Portage version: 2.2_pre5)
7
8 Revision Changes Path
9 1.11 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.11&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd?rev=1.11&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd?r1=1.10&r2=1.11
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.10
19 retrieving revision 1.11
20 diff -u -r1.10 -r1.11
21 --- nfsmount.initd 21 Apr 2008 18:17:26 -0000 1.10
22 +++ nfsmount.initd 22 Apr 2008 07:43:16 -0000 1.11
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.10 2008/04/21 18:17:26 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.11 2008/04/22 07:43:16 vapier Exp $
29
30 [ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs
31
32 @@ -11,7 +11,7 @@
33 awk '!/^[[:space:]]*#/ && $3 == "nfs4" { exit ($4 ~ /sec=krb/ ? 10 : 20) }' /etc/fstab
34 local ret=$?
35 [ ${ret} -eq 10 ] && myneed="${myneed} rpc.gssd"
36 - [ ${ret} -ne 20 ] && myneed="${myneed} rpc.idmapd"
37 + [ ${ret} -eq 20 ] && myneed="${myneed} rpc.idmapd"
38 fi
39 type -t config 2>/dev/null 1>&2 && config /etc/fstab
40 need net portmap rpc.statd ${myneed}
41
42
43
44 --
45 gentoo-commits@l.g.o mailing list