From f2e35be143b1ad97a42bae6de8c446b817d20f4e Mon Sep 17 00:00:00 2001 From: David Wilson Date: Fri, 9 Aug 2019 21:58:54 +0100 Subject: [PATCH] issue #482: remove 'ssh' from checked processes Can't be used due to regular Ansible behaviour --- .ci/ci_lib.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/ci_lib.py b/.ci/ci_lib.py index 251c826b..971ae5d8 100644 --- a/.ci/ci_lib.py +++ b/.ci/ci_lib.py @@ -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):