summaryrefslogtreecommitdiff
path: root/test/integration/targets/setup_acme/tasks/main.yml
blob: 6f4f2ec02bcac8cc00d53125d8a99d77a63c2b62 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: register openssl version
  shell: "openssl version | cut -d' ' -f2"
  register: openssl_version

- name: register cryptography version
  command: "{{ ansible_python.executable }} -c 'import cryptography; print(cryptography.__version__)'"
  register: cryptography_version

- debug: msg="ACME test container IP is {{ acme_host }}; OpenSSL version is {{ openssl_version.stdout }}; cryptography version is {{ cryptography_version.stdout }}"