From 9e80079370ff3b943832adc3c5ef430e64be0a0c Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Tue, 3 Jan 2012 21:32:30 +0100 Subject: AUTOFS: responder --- src/man/Makefile.am | 10 +++++++--- src/man/sssd.conf.5.xml | 28 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 3 deletions(-) (limited to 'src/man') diff --git a/src/man/Makefile.am b/src/man/Makefile.am index 6e23830a..f0faf690 100644 --- a/src/man/Makefile.am +++ b/src/man/Makefile.am @@ -6,13 +6,17 @@ top_builddir = ../.. ############ -# If no conditions are given, *all* conditionals are expanded. We don't +# If no conditions are given, *all* conditionals are expanded. We don't want # to include any conditions by default, so we need to pass a phony conditional -CONDS=with_false if BUILD_SUDO # conditionals are delimeted with a semicolon -CONDS+=;with_sudo +SUDO_CONDS = ;with_sudo endif +if BUILD_AUTOFS +AUTOFS_CONDS = ;with_autofs +endif +CONDS = with_false$(SUDO_CONDS)$(AUTOFS_CONDS) + #Special Rules: export SGML_CATALOG_FILES diff --git a/src/man/sssd.conf.5.xml b/src/man/sssd.conf.5.xml index 7916e1f8..7217c9dd 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -645,6 +645,34 @@ + + AUTOFS configuration options + + These options can be used to configure the autofs service. + + + + + + + + autofs_negative_timeout (integer) + + + Specifies for how many seconds should the + autofs respondercache negative cache hits + (that is, queries for invalid map entries, + like nonexistent ones) before asking the back + end again. + + + Default: 15 + + + + + + -- cgit