mirror of
https://github.com/trailofbits/algo.git
synced 2025-04-04 16:29:57 +02:00
Use legacy OpenSSL Format for Apple Devices (#14718)
* fix openssl * Update openssl.yml --------- Co-authored-by: Jack Ivanov <17044561+jackivanov@users.noreply.github.com>
This commit is contained in:
parent
6ce6f5c81e
commit
8c4ae501ad
2 changed files with 17 additions and 0 deletions
|
@ -155,10 +155,25 @@
|
|||
format: OpenSSH
|
||||
with_items: "{{ users }}"
|
||||
|
||||
- name: Get OpenSSL version
|
||||
shell: |
|
||||
set -o pipefail
|
||||
{{ openssl_bin }} version |
|
||||
cut -f 2 -d ' '
|
||||
args:
|
||||
executable: bash
|
||||
register: ssl_version
|
||||
run_once: true
|
||||
|
||||
- name: Set OpenSSL version fact
|
||||
set_fact:
|
||||
openssl_version: "{{ ssl_version.stdout }}"
|
||||
|
||||
- name: Build the client's p12
|
||||
shell: >
|
||||
umask 077;
|
||||
{{ openssl_bin }} pkcs12
|
||||
{{ (openssl_version is version('3', '>=')) | ternary('-legacy', '') }}
|
||||
-in certs/{{ item }}.crt
|
||||
-inkey private/{{ item }}.key
|
||||
-export
|
||||
|
@ -175,6 +190,7 @@
|
|||
shell: >
|
||||
umask 077;
|
||||
{{ openssl_bin }} pkcs12
|
||||
{{ (openssl_version is version('3', '>=')) | ternary('-legacy', '') }}
|
||||
-in certs/{{ item }}.crt
|
||||
-inkey private/{{ item }}.key
|
||||
-export
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
[{% for i in _configs_list.files %}
|
||||
{% set config = lookup('file', i.path)|from_yaml %}
|
||||
'{{ config.server }}'
|
||||
'{{ config.IP_subject_alt_name }}'
|
||||
{{ ',' if not loop.last else '' }}
|
||||
{% endfor %}]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue