From 99414bd3eecf93f23c378d3bb3d45bc98f364abc Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Sat, 8 Jul 2006 09:41:58 +1000 Subject: [PATCH] Disable building/installing mount.nfs by default. mount.nfs does not yet support 'user' option and some others. To make it support this we need to make it setuid-root, and some security isses need to be resolved before that can be done safely. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 430d397..bd8c14e 100644 --- a/configure.in +++ b/configure.in @@ -109,9 +109,9 @@ AC_ARG_ENABLE(rquotad, AC_ARG_ENABLE(mount, [AC_HELP_STRING([--enable-mount], - [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=yes@:>@])], + [Create mount.nfs and don't use the util-linux mount(8) functionality. @<:@default=no@:>@])], enable_mount=$enableval, - enable_mount=yes) + enable_mount=no) AM_CONDITIONAL(CONFIG_MOUNT, [test "$enable_mount" = "yes"]) # Check whether user wants TCP wrappers support -- 2.39.2