summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2014-12-24 18:06:03 +0000
committerTim Harder <radhermit@gentoo.org>2014-12-24 18:06:03 +0000
commit4d5b148c9c29aff1519bb4be676aab8c08953ed1 (patch)
tree2e547ef4636d14d7011915e8e936aabd51b3f0ab /net-fs/nfs-utils
parentmask clang use flag for app-doc/doxygen (diff)
downloadgentoo-2-4d5b148c9c29aff1519bb4be676aab8c08953ed1.tar.gz
gentoo-2-4d5b148c9c29aff1519bb4be676aab8c08953ed1.tar.bz2
gentoo-2-4d5b148c9c29aff1519bb4be676aab8c08953ed1.zip
Fix nfsclient init script when using mounts requiring the rpc.gssd service.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-fs/nfs-utils')
-rw-r--r--net-fs/nfs-utils/ChangeLog8
-rw-r--r--net-fs/nfs-utils/files/nfsclient.initd5
-rw-r--r--net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild (renamed from net-fs/nfs-utils/nfs-utils-1.3.1.ebuild)2
3 files changed, 11 insertions, 4 deletions
diff --git a/net-fs/nfs-utils/ChangeLog b/net-fs/nfs-utils/ChangeLog
index 6f16aa75096c..cbc4ca50a8c1 100644
--- a/net-fs/nfs-utils/ChangeLog
+++ b/net-fs/nfs-utils/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-fs/nfs-utils
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.259 2014/12/22 19:24:28 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/ChangeLog,v 1.260 2014/12/24 18:06:03 radhermit Exp $
+
+*nfs-utils-1.3.1-r1 (24 Dec 2014)
+
+ 24 Dec 2014; Tim Harder <radhermit@gentoo.org> -nfs-utils-1.3.1.ebuild,
+ +nfs-utils-1.3.1-r1.ebuild, files/nfsclient.initd:
+ Fix nfsclient init script when using mounts requiring the rpc.gssd service.
*nfs-utils-1.3.1 (22 Dec 2014)
diff --git a/net-fs/nfs-utils/files/nfsclient.initd b/net-fs/nfs-utils/files/nfsclient.initd
index e2b93a8dcff5..e31e20000f4c 100644
--- a/net-fs/nfs-utils/files/nfsclient.initd
+++ b/net-fs/nfs-utils/files/nfsclient.initd
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsclient.initd,v 1.1 2014/12/22 19:24:28 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/files/nfsclient.initd,v 1.2 2014/12/24 18:06:03 radhermit Exp $
[ -e /etc/conf.d/nfs ] && . /etc/conf.d/nfs
@@ -10,7 +10,8 @@ depend() {
if [ -e /etc/fstab ] ; then
fstabinfo -t nfs4 -q && myneed="$myneed rpc.idmapd"
fstabinfo -t nfs -q && myneed="$myneed rpc.statd"
- fstabinfo -o -t nfs,nfs4 | while read opts; do
+
+ for opts in $(fstabinfo -o -t nfs,nfs4) ; do
case $opts in
*sec=krb*|*sec=spkm*) myneed="$myneed rpc.gssd" ;;
esac
diff --git a/net-fs/nfs-utils/nfs-utils-1.3.1.ebuild b/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild
index 06323aec387f..f64ec167795f 100644
--- a/net-fs/nfs-utils/nfs-utils-1.3.1.ebuild
+++ b/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1.ebuild,v 1.1 2014/12/22 19:24:28 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-fs/nfs-utils/nfs-utils-1.3.1-r1.ebuild,v 1.1 2014/12/24 18:06:03 radhermit Exp $
EAPI="5"