]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix missing field in /etc/gss/mech documentation 984/head
authorGreg Hudson <ghudson@mit.edu>
Sun, 6 Oct 2019 22:26:03 +0000 (18:26 -0400)
committerGreg Hudson <ghudson@mit.edu>
Mon, 21 Oct 2019 19:55:21 +0000 (15:55 -0400)
/etc/gss/mech lines begin with a name field, but this field was not
included in the format documentation.

ticket: 8839 (new)
tags: pullup
target_version: 1.17-next

doc/admin/host_config.rst

index e186dd4686d2d8a6e5ee061103c7f7419290878a..91848ff16a231247819173a724e05bb5d7ef7112 100644 (file)
@@ -203,15 +203,17 @@ GSSAPI mechanism modules are registered using the file
 |sysconfdir|\ ``/gss/mech.d`` directory with a ``.conf``
 suffix.  Each line in these files has the form::
 
-    oid  pathname  [options]  <type>
-
-Only the oid and pathname are required.  *oid* is the object
-identifier of the GSSAPI mechanism to be registered.  *pathname* is a
-path to the module shared object or DLL.  *options* (if present) are
-options provided to the plugin module, surrounded in square brackets.
-*type* (if present) can be used to indicate a special type of module.
-Currently the only special module type is "interposer", for a module
-designed to intercept calls to other mechanisms.
+    name  oid  pathname  [options]  <type>
+
+Only the name, oid, and pathname are required.  *name* is the
+mechanism name, which may be used for debugging or logging purposes.
+*oid* is the object identifier of the GSSAPI mechanism to be
+registered.  *pathname* is a path to the module shared object or DLL.
+*options* (if present) are options provided to the plugin module,
+surrounded in square brackets.  *type* (if present) can be used to
+indicate a special type of module.  Currently the only special module
+type is "interposer", for a module designed to intercept calls to
+other mechanisms.
 
 If the environment variable **GSS_MECH_CONFIG** is set, its value is
 used as the sole mechanism configuration filename.