1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-25 06:37:24 +00:00
This commit is contained in:
Felix Fontein 2026-03-20 04:10:54 -04:00 committed by GitHub
commit f871b51ff1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 582 additions and 0 deletions

View file

@ -120,6 +120,30 @@ options:
attributes:
version_added: 8.5.0
requirements: [openssl, keytool]
installable_requirements:
- name: Java keytool
blocks:
- system:
- openjdk11-jre-headless
when: ansible_facts.os_family == 'Alpine'
- system:
- java-11-openjdk-headless
when: ansible_facts.os_family in ['RedHat', 'Suse']
- system:
- jre11-openjdk-headless
when: ansible_facts.os_family == 'Archlinux'
- system:
- ca-certificates-java
when: ansible_facts.distribution == 'Debian' and ansible_facts.distribution_major_version | int < 12
- system:
- ca-certificates-java
- openjdk-17-jre-headless
when: ansible_facts.os_family == 'Debian'
- name: OpenSSL
blocks:
- system:
- openssl
when: true
author:
- Adam Hamsik (@haad)
"""