003 File Manager
Current Path:
/usr/local/lib/python3.8/site-packages/salt/output
usr
/
local
/
lib
/
python3.8
/
site-packages
/
salt
/
output
/
📁
..
📄
__init__.py
(7.03 KB)
📁
__pycache__
📄
dson.py
(1.55 KB)
📄
highstate.py
(21.64 KB)
📄
json_out.py
(2.64 KB)
📄
key.py
(3.01 KB)
📄
nested.py
(5.27 KB)
📄
newline_values_only.py
(2.11 KB)
📄
no_out_quiet.py
(450 B)
📄
no_return.py
(1.47 KB)
📄
overstatestage.py
(1.01 KB)
📄
pony.py
(2.58 KB)
📄
pprint_out.py
(1010 B)
📄
profile.py
(2.18 KB)
📄
progress.py
(1.19 KB)
📄
raw.py
(891 B)
📄
table_out.py
(12.47 KB)
📄
txt.py
(998 B)
📄
virt_query.py
(1.84 KB)
📄
yaml_out.py
(1.37 KB)
Editing: progress.py
""" Display return data as a progress bar """ try: import progressbar HAS_PROGRESSBAR = True except ImportError: HAS_PROGRESSBAR = False def __virtual__(): return True if HAS_PROGRESSBAR else False def output(ret, bar, **kwargs): # pylint: disable=unused-argument """ Update the progress bar """ if "return_count" in ret: val = ret["return_count"] # Avoid to fail if targets are behind a syndic. In this case actual return count will be # higher than targeted by MoM itself. # TODO: implement a way to get the proper target minions count and remove this workaround. # Details are in #44239. if val > bar.maxval: bar.maxval = val bar.update(val) return "" def progress_iter(progress): """ Initialize and return a progress bar iter """ widgets = [ progressbar.Percentage(), " ", progressbar.Bar(), " ", progressbar.Timer(), " Returns: [", progressbar.Counter(), "/{}]".format(progress["minion_count"]), ] bar = progressbar.ProgressBar(widgets=widgets, maxval=progress["minion_count"]) bar.start() return bar
Upload File
Create Folder