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:
C. R. Oldham 2016-01-12 09:42:48 -07:00
parent 8c46de12e4
commit c9a5680427

View file

@ -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,