diff --git a/cloudinit/config/cc_ca_certs.py b/cloudinit/config/cc_ca_certs.py index ed012f24c31..3dea5689ad6 100644 --- a/cloudinit/config/cc_ca_certs.py +++ b/cloudinit/config/cc_ca_certs.py @@ -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 @@ -79,6 +85,8 @@ order to provide the ``update-ca-certificates`` command. """ distros = [ + "almalinux", + "cloudlinux", "alpine", "debian", "fedora",