mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add unused 'output_loglevel' kwarg. This is here for when we alias cmd.run_all directly to _run_all_quiet in certain chicken-and-egg situations where modules need to work both before and after the __salt__ dictionary is populated (cf dracr.py).
This commit is contained in:
parent
8c46de12e4
commit
c9a5680427
1 changed files with 9 additions and 2 deletions
|
@ -588,10 +588,17 @@ def _run_all_quiet(cmd,
|
|||
reset_system_locale=True,
|
||||
saltenv='base',
|
||||
pillarenv=None,
|
||||
pillar_override=None):
|
||||
pillar_override=None,
|
||||
output_loglevel=None):
|
||||
|
||||
'''
|
||||
Helper for running commands quietly for minion startup.
|
||||
Returns a dict of return data
|
||||
Returns a dict of return data.
|
||||
|
||||
output_loglevel argument is ignored. This is here for when we alias
|
||||
cmd.run_all directly to _run_all_quiet in certain chicken-and-egg
|
||||
situations where modules need to work both before and after
|
||||
the __salt__ dictionary is populated (cf dracr.py)
|
||||
'''
|
||||
return _run(cmd,
|
||||
runas=runas,
|
||||
|
|
Loading…
Add table
Reference in a new issue