mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
document extmod_whitelist
for master and minion configs
This commit is contained in:
parent
6c229396cc
commit
413ae19592
@ -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``
|
||||
|
@ -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
|
||||
=================
|
||||
|
Loading…
Reference in New Issue
Block a user