mirror of
https://github.com/trailofbits/algo.git
synced 2025-06-06 15:13:56 +02:00
Consistent with other shell executions, fix to use {{openssl_bin}} and pipefile option in the shell command for getting openssl version number (trailofbits#14558)
This commit is contained in:
parent
5394f0623c
commit
43212128ae
1 changed files with 4 additions and 1 deletions
|
@ -160,7 +160,10 @@
|
||||||
manager: auto
|
manager: auto
|
||||||
|
|
||||||
- name: Get OpenSSL version
|
- name: Get OpenSSL version
|
||||||
shell: openssl version | cut -f 2 -d ' '
|
shell: |
|
||||||
|
set -o pipefail
|
||||||
|
{{ openssl_bin }} version |
|
||||||
|
cut -f 2 -d ' '
|
||||||
register: ssl_version
|
register: ssl_version
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue