Selaa lähdekoodia

Do not install openssl if not necessary

Fix for d28bdb3258.

We were only supposed to install openssl when the self-signed
SSL certificate retrieval method is used, not always.
pull/61/head
Slavi Pantaleev 7 vuotta sitten
vanhempi
commit
4757c13a2e
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      roles/matrix-server/tasks/setup/ssl/setup_ssl_self_signed.yml

+ 2
- 2
roles/matrix-server/tasks/setup/ssl/setup_ssl_self_signed.yml Näytä tiedosto

@@ -6,7 +6,7 @@
- openssl - openssl
state: present state: present
update_cache: no update_cache: no
when: ansible_os_family == 'RedHat'
when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_os_family == 'RedHat'"


- name: Ensure APT usage dependencies are installed (Debian) - name: Ensure APT usage dependencies are installed (Debian)
apt: apt:
@@ -14,7 +14,7 @@
- openssl - openssl
state: present state: present
update_cache: no update_cache: no
when: ansible_os_family == 'Debian'
when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_os_family == 'Debian'"


- name: Obtain certificates - name: Obtain certificates
include_tasks: "tasks/setup/ssl/setup_ssl_self_signed_obtain_for_domain.yml" include_tasks: "tasks/setup/ssl/setup_ssl_self_signed_obtain_for_domain.yml"


Ladataan…
Peruuta
Tallenna