From ee07d8320a2ab89bda20eb42cb4315c3a5a3f715 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Sun, 22 Jan 2023 18:16:53 +0100 Subject: [PATCH] [PR #5868/098912c2 backport][stable-6] stormssh tests: do not install newer cryptography (#5872) stormssh tests: do not install newer cryptography (#5868) Do not install newer cryptography. ci_complete (cherry picked from commit 098912c2293febb91cfca14631784ccb72c4b774) Co-authored-by: Felix Fontein --- tests/integration/targets/ssh_config/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/integration/targets/ssh_config/tasks/main.yml b/tests/integration/targets/ssh_config/tasks/main.yml index ce57493b84..d0b088302c 100644 --- a/tests/integration/targets/ssh_config/tasks/main.yml +++ b/tests/integration/targets/ssh_config/tasks/main.yml @@ -5,7 +5,9 @@ - name: Install required libs pip: - name: stormssh + name: + - stormssh + - 'paramiko<3.0.0' state: present extra_args: "-c {{ remote_constraints }}"