mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-06-11 18:45:34 +00:00
Add requirements to two modules.
This commit is contained in:
parent
4645ddc939
commit
52e0fcb2cd
2 changed files with 29 additions and 0 deletions
|
|
@ -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)
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -32,6 +32,11 @@ attributes:
|
|||
support: full
|
||||
diff_mode:
|
||||
support: none
|
||||
installable_requirements:
|
||||
- name: ufw firewall
|
||||
blocks:
|
||||
- system:
|
||||
- ufw
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue