summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2007-05-11 13:28:53 +1000
committerNeil Brown <neilb@suse.de>2007-05-11 13:28:53 +1000
commit89fb5a45d2020aaee203dd9016d98c3ff9d9f991 (patch)
tree8f11b91785655094677a1d51f222e37ce18f8f92
parent71ad2bbcae08d0cfb32d733dc30c0826d2e5eee4 (diff)
downloadnfs-utils-89fb5a45d2020aaee203dd9016d98c3ff9d9f991.tar.gz
nfs-utils-89fb5a45d2020aaee203dd9016d98c3ff9d9f991.tar.xz
nfs-utils-89fb5a45d2020aaee203dd9016d98c3ff9d9f991.zip
mount.nfs4: Remove checks for idmapd and gssd running.
While it is nice to have the checks, nothing in this package creates the files that are checked, so we shouldn't check them yet.
-rw-r--r--utils/mount/nfs4mount.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/mount/nfs4mount.c b/utils/mount/nfs4mount.c
index 8aa13c6..2a58d0a 100644
--- a/utils/mount/nfs4mount.c
+++ b/utils/mount/nfs4mount.c
@@ -352,6 +352,10 @@ int nfs4mount(const char *spec, const char *node, int *flags,
/*
* Give a warning if the rpc.idmapd daemon is not running
*/
+#if 0
+ /* We shouldn't have these checks as nothing in this package
+ * creates the files that are checked
+ */
idmapd_check();
if (num_flavour == 0)
@@ -362,6 +366,7 @@ int nfs4mount(const char *spec, const char *node, int *flags,
*/
gssd_check();
}
+#endif
data.auth_flavourlen = num_flavour;
data.auth_flavours = pseudoflavour;