mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +00:00
Add RHEL 10.0 to CI. (#899)
This commit is contained in:
@@ -184,6 +184,8 @@ stages:
|
||||
targets:
|
||||
- name: macOS 15.3
|
||||
test: macos/15.3
|
||||
- name: RHEL 10.0
|
||||
test: rhel/10.0
|
||||
- name: RHEL 9.5
|
||||
test: rhel/9.5
|
||||
- name: FreeBSD 14.2
|
||||
|
||||
@@ -3,9 +3,13 @@
|
||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
- name: RedHat - Enable the dynamic CA configuration feature
|
||||
- name: RedHat - Enable the dynamic CA configuration feature (RHEL up to 9)
|
||||
command: update-ca-trust force-enable
|
||||
when: ansible_os_family == 'RedHat' and ansible_distribution != "Fedora"
|
||||
when: ansible_os_family == 'RedHat' and ansible_distribution != "Fedora" and (ansible_distribution_major_version | int) < 10
|
||||
|
||||
- name: RedHat - Enable the dynamic CA configuration feature (RHEL 10+)
|
||||
command: update-ca-trust
|
||||
when: ansible_os_family == 'RedHat' and ansible_distribution != "Fedora" and (ansible_distribution_major_version | int) >= 10
|
||||
|
||||
- name: RedHat - Retrieve test cacert
|
||||
get_url:
|
||||
|
||||
Reference in New Issue
Block a user