Added basic changes to make it compatible with Archlinux

This commit is contained in:
Christian Wolf
2020-03-28 11:39:15 +01:00
parent 9b6289b08c
commit d84b2868b7
6 changed files with 56 additions and 1 deletions

View File

@ -16,6 +16,14 @@
update_cache: no
when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_os_family == 'Debian'"
- name: Ensure OpenSSL installed (Archlinux)
pacman:
name:
- openssl
state: latest
update_cache: no
when: "matrix_ssl_retrieval_method == 'self-signed' and ansible_distribution == 'Archlinux'
- name: Generate self-signed certificates
include_tasks: "{{ role_path }}/tasks/ssl/setup_ssl_self_signed_obtain_for_domain.yml"
with_items: "{{ matrix_ssl_domains_to_obtain_certificates_for }}"