issue #482: remove 'ssh' from checked processes

Can't be used due to regular Ansible behaviour
This commit is contained in:
David Wilson 2019-08-09 21:58:54 +01:00
parent faec0158d9
commit f2e35be143
1 changed files with 3 additions and 1 deletions

View File

@ -215,7 +215,9 @@ def make_containers(name_prefix='', port_offset=0):
return lst
INTERESTING_COMMS = ('python', 'ssh', 'sudo', 'su', 'doas')
# ssh removed from here because 'linear' strategy relies on processes that hang
# around after the Ansible run completes
INTERESTING_COMMS = ('python', 'sudo', 'su', 'doas')
def proc_is_docker(pid):