mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 08:35:21 +00:00
Add more links and write some system summaries
This commit is contained in:
parent
bd3796a9c2
commit
1bdd49d43a
@ -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
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
@ -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
|
||||||
===================
|
===================
|
||||||
|
Loading…
Reference in New Issue
Block a user