Add more links and write some system summaries

This commit is contained in:
Jamie Bliss 2018-11-29 22:49:39 -05:00
parent bd3796a9c2
commit 1bdd49d43a
No known key found for this signature in database
GPG Key ID: 056512BD3C56F501
2 changed files with 17 additions and 0 deletions

View File

@ -143,6 +143,9 @@ The auth module system allows for external authentication routines to be easily
added into Salt. The `auth` function needs to be implemented to satisfy the added into Salt. The `auth` function needs to be implemented to satisfy the
requirements of an auth module. Use the ``pam`` module as an example. requirements of an auth module. Use the ``pam`` module as an example.
See :ref:`External Authentication System <acl-eauth>` for more about
authentication in Salt.
Beacon Beacon
------ ------
@ -202,6 +205,8 @@ The file server module system is used to create file server backends used by the
Salt Master. These modules need to implement the functions used in the Salt Master. These modules need to implement the functions used in the
fileserver subsystem. Use the ``gitfs`` module as an example. fileserver subsystem. Use the ``gitfs`` module as an example.
See :ref:`File Server Backends <file-server-backends>` for more information.
Grains Grains
------ ------
@ -211,6 +216,8 @@ Grain modules define extra routines to populate grains data. All defined
public functions will be executed and MUST return a Python dict object. The public functions will be executed and MUST return a Python dict object. The
dict keys will be added to the grains made available to the minion. dict keys will be added to the grains made available to the minion.
See :ref:`Grains <grains>` for more.
Log Handler Log Handler
----------- -----------
@ -282,12 +289,21 @@ Runners are purely master-side execution sequences.
SDB SDB
--- ---
* :ref:`Writing SDB Modules <sdb-writing-modules>`
SDB is a way to store data that's not associated with a minion. See
:ref:`Storing Data in Other Databases <sdb>`.
Search Search
------ ------
A system for indexing the file server and pillars. Removed in 2018.3.
Serializer Serializer
---------- ----------
Primarily used with :py:func:`file.serialize <salt.states.file.serialize>`.
State State
----- -----

View File

@ -154,6 +154,7 @@ When writing Salt modules, it is not recommended to call ``sdb.get`` directly,
as it requires the user to provide values in SDB, using a specific URI. Use as it requires the user to provide values in SDB, using a specific URI. Use
``config.get`` instead. ``config.get`` instead.
.. _sdb-writing-modules:
Writing SDB Modules Writing SDB Modules
=================== ===================