From 558f2db31f7d43511788e14c1b5d052baa64a4b8 Mon Sep 17 00:00:00 2001 From: Felix Matouschek Date: Sun, 5 Jun 2022 15:38:56 +0200 Subject: [PATCH] system.sh: Remove no longer needed haveged (#2090) Starting from kernels 5.6 haveged is obsolete. Therefore remove it in Ubuntu 22.04. See https://github.com/jirka-h/haveged/issues/57 --- setup/system.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/setup/system.sh b/setup/system.sh index 8c7ff137..d9ee1f3f 100755 --- a/setup/system.sh +++ b/setup/system.sh @@ -124,9 +124,6 @@ apt_get_quiet autoremove # Install basic utilities. # -# * haveged: Provides extra entropy to /dev/random so it doesn't stall -# when generating random numbers for private keys (e.g. during -# ldns-keygen). # * unattended-upgrades: Apt tool to install security updates automatically. # * cron: Runs background processes periodically. # * ntp: keeps the system time correct @@ -141,7 +138,7 @@ apt_get_quiet autoremove echo Installing system packages... apt_install python3 python3-dev python3-pip python3-setuptools \ netcat-openbsd wget curl git sudo coreutils bc \ - haveged pollinate openssh-client unzip \ + pollinate openssh-client unzip \ unattended-upgrades cron ntp fail2ban rsyslog # ### Suppress Upgrade Prompts