mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Sort services during diagnosis to avoid random order
This commit is contained in:
parent
65d6b02b56
commit
104bba3dd8
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ class ServicesDiagnoser(Diagnoser):
|
|||
|
||||
all_result = service_status()
|
||||
|
||||
for service, result in all_result.items():
|
||||
for service, result in sorted(all_result.items()):
|
||||
|
||||
if service in services_ignored:
|
||||
continue
|
||||
|
|
Loading…
Add table
Reference in a new issue