summaryrefslogtreecommitdiff
path: root/net-fs
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-04-22 07:43:16 +0000
committerMike Frysinger <vapier@gentoo.org>2008-04-22 07:43:16 +0000
commitd94d46e6cc8c6f53c0bf88344832d1a2d61a32aa (patch)
tree12bbfc9c2dbd7277a9c34865cbb033142af322ed /net-fs
parentMask app-vim/conky-syntax for removal in 30 days. (bug #208878) (diff)
downloadgentoo-2-d94d46e6cc8c6f53c0bf88344832d1a2d61a32aa.tar.gz
gentoo-2-d94d46e6cc8c6f53c0bf88344832d1a2d61a32aa.tar.bz2
gentoo-2-d94d46e6cc8c6f53c0bf88344832d1a2d61a32aa.zip
fix operator typo #218713
(Portage version: 2.2_pre5)
Diffstat (limited to 'net-fs')
-rwxr-xr-xnet-fs/nfs-utils/files/nfsmount.initd4
1 files changed, 2 insertions, 2 deletions
diff --git a/net-fs/nfs-utils/files/nfsmount.initd b/net-fs/nfs-utils/files/nfsmount.initd
index 1d6b91d54b2e..5249baee32db 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.10 2008/04/21 18:17:26 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsmount.initd,v 1.11 2008/04/22 07:43:16 vapier Exp $
[ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs
@@ -11,7 +11,7 @@ depend() {
awk '!/^[[:space:]]*#/ && $3 == "nfs4" { exit ($4 ~ /sec=krb/ ? 10 : 20) }' /etc/fstab
local ret=$?
[ ${ret} -eq 10 ] && myneed="${myneed} rpc.gssd"
- [ ${ret} -ne 20 ] && myneed="${myneed} rpc.idmapd"
+ [ ${ret} -eq 20 ] && myneed="${myneed} rpc.idmapd"
fi
type -t config 2>/dev/null 1>&2 && config /etc/fstab
need net portmap rpc.statd ${myneed}