mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
Don't compile pillar data when getting top file envs
This prevents an unnecessary pillar compile when syncing custom types, in cases where the saltenv is not specified.
This commit is contained in:
parent
8d6fdb7c9a
commit
b7e5c11165
@ -76,7 +76,8 @@ def _get_top_file_envs():
|
||||
return __context__['saltutil._top_file_envs']
|
||||
except KeyError:
|
||||
try:
|
||||
st_ = salt.state.HighState(__opts__)
|
||||
st_ = salt.state.HighState(__opts__,
|
||||
initial_pillar=__pillar__)
|
||||
top = st_.get_top()
|
||||
if top:
|
||||
envs = list(st_.top_matches(top).keys()) or 'base'
|
||||
@ -186,10 +187,14 @@ def sync_beacons(saltenv=None, refresh=True):
|
||||
|
||||
Sync beacons from ``salt://_beacons`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for beacons to sync. If no top files are
|
||||
found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available beacons on the minion. This refresh
|
||||
will be performed even if no new beacons are synced. Set to ``False``
|
||||
@ -215,10 +220,14 @@ def sync_sdb(saltenv=None):
|
||||
|
||||
Sync sdb modules from ``salt://_sdb`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for sdb modules to sync. If no top files
|
||||
are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : False
|
||||
This argument has no affect and is included for consistency with the
|
||||
other sync functions.
|
||||
@ -241,10 +250,14 @@ def sync_modules(saltenv=None, refresh=True):
|
||||
|
||||
Sync execution modules from ``salt://_modules`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for execution modules to sync. If no top
|
||||
files are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new execution modules are
|
||||
@ -287,10 +300,14 @@ def sync_states(saltenv=None, refresh=True):
|
||||
|
||||
Sync state modules from ``salt://_states`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for state modules to sync. If no top
|
||||
files are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available states on the minion. This refresh
|
||||
will be performed even if no new state modules are synced. Set to
|
||||
@ -349,10 +366,14 @@ def sync_grains(saltenv=None, refresh=True):
|
||||
|
||||
Sync grains modules from ``salt://_grains`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for grains modules to sync. If no top
|
||||
files are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules and recompile
|
||||
pillar data for the minion. This refresh will be performed even if no
|
||||
@ -380,10 +401,14 @@ def sync_renderers(saltenv=None, refresh=True):
|
||||
|
||||
Sync renderers from ``salt://_renderers`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for renderers to sync. If no top files
|
||||
are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new renderers are synced.
|
||||
@ -410,10 +435,14 @@ def sync_returners(saltenv=None, refresh=True):
|
||||
|
||||
Sync beacons from ``salt://_returners`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for returners to sync. If no top files
|
||||
are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new returners are synced. Set
|
||||
@ -438,10 +467,14 @@ def sync_proxymodules(saltenv=None, refresh=False):
|
||||
|
||||
Sync proxy modules from ``salt://_proxy`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for proxy modules to sync. If no top
|
||||
files are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new proxy modules are synced.
|
||||
@ -467,10 +500,14 @@ def sync_engines(saltenv=None, refresh=False):
|
||||
|
||||
Sync engine modules from ``salt://_engines`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for engines to sync. If no top files are
|
||||
found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new engine modules are synced.
|
||||
@ -493,10 +530,14 @@ def sync_output(saltenv=None, refresh=True):
|
||||
'''
|
||||
Sync outputters from ``salt://_output`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for outputters to sync. If no top files
|
||||
are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new outputters are synced.
|
||||
@ -524,10 +565,14 @@ def sync_utils(saltenv=None, refresh=True):
|
||||
|
||||
Sync utility modules from ``salt://_utils`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for utility modules to sync. If no top
|
||||
files are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new utility modules are
|
||||
@ -553,10 +598,14 @@ def sync_log_handlers(saltenv=None, refresh=True):
|
||||
|
||||
Sync log handlers from ``salt://_log_handlers`` to the minion
|
||||
|
||||
saltenv : base
|
||||
saltenv
|
||||
The fileserver environment from which to sync. To sync from more than
|
||||
one environment, pass a comma-separated list.
|
||||
|
||||
If not passed, then all environments configured in the :ref:`top files
|
||||
<states-top>` will be checked for log handlers to sync. If no top files
|
||||
are found, then the ``base`` environment will be synced.
|
||||
|
||||
refresh : True
|
||||
If ``True``, refresh the available execution modules on the minion.
|
||||
This refresh will be performed even if no new log handlers are synced.
|
||||
|
Loading…
Reference in New Issue
Block a user