Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ca_certs): Add AlmaLinux OS and CloudLinux OS support #5264

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions cloudinit/config/cc_ca_certs.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@
):
DISTRO_OVERRIDES[distro] = DISTRO_OVERRIDES["opensuse"]

for distro in (
"almalinux",
"cloudlinux",
):
DISTRO_OVERRIDES[distro] = DISTRO_OVERRIDES["rhel"]

MODULE_DESCRIPTION = """\
This module adds CA certificates to the system's CA store and updates any
related files using the appropriate OS-specific utility. The default CA
Expand All @@ -79,6 +85,8 @@
order to provide the ``update-ca-certificates`` command.
"""
distros = [
"almalinux",
"cloudlinux",
"alpine",
"debian",
"fedora",
Expand Down
Loading