Skip to content

Commit 5394f06

Browse files
Fixed issue with getting openssl version from existing fact, get it with shell script instead. This may not work in Windows (trailofbits#14558)
1 parent 8fb897d commit 5394f06

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

roles/strongswan/tasks/openssl.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,13 @@
160160
manager: auto
161161

162162
- name: Get OpenSSL version
163+
shell: openssl version | cut -f 2 -d ' '
164+
register: ssl_version
165+
run_once: true
166+
167+
- name: Set OpenSSL version fact
163168
set_fact:
164-
openssl_version: "{{ ansible_facts.packages['openssl'][0]['version'] }}"
169+
openssl_version: "{{ ssl_version.stdout }}"
165170

166171
- name: Build the client's p12
167172
shell: >

0 commit comments

Comments
 (0)