summaryrefslogtreecommitdiffstats
path: root/doc/krb5conf.texinfo
diff options
context:
space:
mode:
authorBen Kaduk <kaduk@mit.edu>2012-10-11 13:46:02 -0400
committerBen Kaduk <kaduk@mit.edu>2012-10-12 11:33:04 -0400
commit4f5947357a2cf152196f8a0af385a41a1d7720f1 (patch)
tree274db27b1fd5b6ce01b58332600fccdd3927d2c1 /doc/krb5conf.texinfo
parent8479e80d863688986cd27ba55c56d9af9889a027 (diff)
downloadkrb5-4f5947357a2cf152196f8a0af385a41a1d7720f1.tar.gz
krb5-4f5947357a2cf152196f8a0af385a41a1d7720f1.tar.xz
krb5-4f5947357a2cf152196f8a0af385a41a1d7720f1.zip
Remove unused texinfo sources
Now that the admin guide make rules are removed, quite a few of the texinfo sources are not referenced from anywhere and can be safely removed. ticket: 7408
Diffstat (limited to 'doc/krb5conf.texinfo')
-rw-r--r--doc/krb5conf.texinfo102
1 files changed, 0 insertions, 102 deletions
diff --git a/doc/krb5conf.texinfo b/doc/krb5conf.texinfo
deleted file mode 100644
index 0b4b2d4377..0000000000
--- a/doc/krb5conf.texinfo
+++ /dev/null
@@ -1,102 +0,0 @@
-The @code{krb5.conf} file contains Kerberos configuration information,
-including the locations of KDCs and admin servers for the Kerberos
-realms of interest, defaults for the current realm and for Kerberos
-applications, and mappings of hostnames onto Kerberos realms. Normally,
-you should install your @code{krb5.conf} file in the directory
-@code{/etc}. You can override the default location by setting the
-environment variable @samp{KRB5_CONFIG}.
-
-The @code{krb5.conf} file is set up in the style of a Windows INI file.
-Sections are headed by the section name, in square brackets. Each
-section may contain zero or more relations, of the form:
-
-@smallexample
-foo = bar
-@end smallexample
-
-@noindent
-or
-
-@smallexample
-@group
-fubar = @{
- foo = bar
- baz = quux
-@}
-@end group
-@end smallexample
-
-Placing a `*' at the end of a line indicates that this is the
-@dfn{final} value for the tag. This means that neither the remainder
-of this configuration file nor any other configuration file will be
-checked for any other values for this tag.
-
-For example, if you have the following lines:
-
-@smallexample
-foo = bar*
-foo = baz
-@end smallexample
-
-then the second value of foo (baz) would never be read.
-
-The @code{krb5.conf} file can include other files using either of the
-following directives at the beginning of a line:
-
-@smallexample
-include @var{FILENAME}
-includedir @var{DIRNAME}
-@end smallexample
-
-@var{FILENAME} or @var{DIRNAME} should be an absolute path. The named
-file or directory must exist and be readable. Including a directory
-includes all files within the directory whose names consist solely of
-alphanumeric characters, dashes, or underscores. Included profile files
-are syntactically independent of their parents, so each included file
-must begin with a section header.
-
-The @code{krb5.conf} file may contain any or all of the following
-sections:
-
-@table @b
-@itemx libdefaults
-Contains default values used by the Kerberos V5 library.
-
-@itemx login
-Contains default values used by the Kerberos V5 login program.
-
-@itemx appdefaults
-Contains default values that can be used by Kerberos V5 applications.
-
-@itemx realms
-Contains subsections keyed by Kerberos realm names. Each subsection
-describes realm-specific information, including where to find the
-Kerberos servers for that realm.
-
-@itemx domain_realm
-Contains relations which map domain names and subdomains onto Kerberos
-realm names. This is used by programs to determine what realm a host
-should be in, given its fully qualified domain name.
-
-@itemx logging
-Contains relations which determine how Kerberos programs are to perform
-logging.
-
-@itemx capaths
-Contains the authentication paths used with direct (nonhierarchical)
-cross-realm authentication. Entries in this section are used by the
-client to determine the intermediate realms which may be used in
-cross-realm authentication. It is also used by the end-service when
-checking the transited field for trusted intermediate realms.
-
-@itemx plugins
-Contains tags to register dynamic plugin modules and to turn modules on
-and off.
-
-@ignore
-this doesn't seem to be used
-@itemx kdc
-For a KDC, may contain the location of the kdc.conf file.
-@end ignore
-
-@end table