No need for entropy on modern kernels, SC-2522

This commit is contained in:
Patrik Holmqvist 2024-12-19 15:57:57 +01:00
parent ecbeee89a3
commit c1d73f107d
Signed by: pahol
GPG key ID: 5D5B0D4E93F77273

View file

@ -81,9 +81,12 @@ class dhcp6_client {
}
class entropyclient {
include sunet::simple_entropy
sunet::ucrandom {'random.nordu.net': ensure => absent }
sunet::nagios::nrpe_check_process { 'haveged': }
# Entropy is not needed on modern kernels, we should remove this class when done with SC-2522
if ($facts['os']['name'] == 'Ubuntu' and versioncmp($facts['os']['release']['full'], '22.04') <= 0 ){
include sunet::simple_entropy
sunet::ucrandom {'random.nordu.net': ensure => absent }
sunet::nagios::nrpe_check_process { 'haveged': }
}
}
class openstack_dockerhost {