diff options
author | Rick Elrod <rick@elrod.me> | 2020-04-21 22:13:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-21 22:13:46 +0200 |
commit | 1e08bb7a6fc8cc5c54034b469920d64984d8af47 (patch) | |
tree | ccdb382dd6324b79bc4dbc8744f11deab0196398 /test/integration | |
parent | Fix incorrect CVE reference in changelog fragment (diff) | |
download | ansible-1e08bb7a6fc8cc5c54034b469920d64984d8af47.tar.xz ansible-1e08bb7a6fc8cc5c54034b469920d64984d8af47.zip |
Cap cryptography version for macOS openssl test (#69083)
Change:
New `cryptography` statically links an openssl that is too new for macOS
10.11, so limit to an older cryptography for now.
Test Plan:
Ran the test with `--remote osx/10.11` and it passed.
Signed-off-by: Rick Elrod <rick@elrod.me>
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/targets/incidental_setup_openssl/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/targets/incidental_setup_openssl/tasks/main.yml b/test/integration/targets/incidental_setup_openssl/tasks/main.yml index 5a634458e2..2eb28ac2e5 100644 --- a/test/integration/targets/incidental_setup_openssl/tasks/main.yml +++ b/test/integration/targets/incidental_setup_openssl/tasks/main.yml @@ -24,7 +24,7 @@ - name: Install pyOpenSSL (Darwin) become: True pip: - name: pyOpenSSL + name: pyOpenSSL<2.9.1 when: ansible_os_family == 'Darwin' - name: register pyOpenSSL version |