diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2012-01-03 21:32:30 +0100 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-02-05 19:16:16 -0500 |
commit | 9e80079370ff3b943832adc3c5ef430e64be0a0c (patch) | |
tree | febc22370a3af43a220b111a1959865cf048e1c1 /src/man | |
parent | e24a0656252c167e644b4758e5e53afe69be02e1 (diff) | |
download | sssd-9e80079370ff3b943832adc3c5ef430e64be0a0c.tar.gz sssd-9e80079370ff3b943832adc3c5ef430e64be0a0c.tar.xz sssd-9e80079370ff3b943832adc3c5ef430e64be0a0c.zip |
AUTOFS: responder
Diffstat (limited to 'src/man')
-rw-r--r-- | src/man/Makefile.am | 10 | ||||
-rw-r--r-- | src/man/sssd.conf.5.xml | 28 |
2 files changed, 35 insertions, 3 deletions
diff --git a/src/man/Makefile.am b/src/man/Makefile.am index 6e23830a5..f0faf6900 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 7916e1f8a..7217c9dd7 100644 --- a/src/man/sssd.conf.5.xml +++ b/src/man/sssd.conf.5.xml @@ -645,6 +645,34 @@ </variablelist> </refsect2> + <refsect2 id='AUTOFS' condition="with_autofs"> + <title>AUTOFS configuration options</title> + <para> + These options can be used to configure the autofs service. + </para> + <para> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="include/experimental.xml" /> + </para> + + <variablelist> + <varlistentry> + <term>autofs_negative_timeout (integer)</term> + <listitem> + <para> + 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. + </para> + <para> + Default: 15 + </para> + </listitem> + </varlistentry> + </variablelist> + </refsect2> + </refsect1> <refsect1 id='domain-sections'> |