document extmod_whitelist

for master and minion configs
This commit is contained in:
Daniel Wallace 2017-02-08 14:41:39 -06:00
parent 6c229396cc
commit 413ae19592
2 changed files with 65 additions and 0 deletions

View File

@ -245,6 +245,39 @@ each of Salt's module types such as ``runners``, ``output``, ``wheel``,
extension_modules: /root/salt_extmods
``extmod_whitelist``
--------------------
.. versionadded:: Nitrogen
By using this dictionary, the modules that are synced to the master's extmod cache using `saltutil.sync_*` can be
limited. If nothing is set to a specific type, then all modules are accepted. To block all modules of a specific type,
whitelist an empty list.
.. code-block:: yaml
extmod_whitelist:
modules:
- custom_module
engines:
- custom_engine
pillars: []
Valid options:
- modules
- states
- grains
- renderers
- returners
- output
- proxy
- runners
- wheel
- engines
- queues
- pillar
- utils
.. conf_master:: module_dirs
``module_dirs``

View File

@ -1197,6 +1197,38 @@ below.
providers:
service: systemd
``extmod_whitelist``
--------------------
.. versionadded:: Nitrogen
By using this dictionary, the modules that are synced to the minion's extmod cache using `saltutil.sync_*`can be
limited. If nothing is set to a specific type, then all modules are accepted. To block all modules of a specific type,
whitelist an empty list.
.. code-block:: yaml
extmod_whitelist:
modules:
- custom_module
engines:
- custom_engine
pillars: []
Valid options:
- beacons
- sdb
- modules
- states
- grains
- renderers
- returners
- proxy
- engines
- output
- utils
- pillar
Top File Settings
=================