From: Grant Slater Date: Sun, 2 Nov 2014 01:43:58 +0000 (+0000) Subject: Install haveged to avoid entropy starvation X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/624f6139dca428c1cc51576082a320c8ee083884 Install haveged to avoid entropy starvation --- diff --git a/cookbooks/hardware/recipes/default.rb b/cookbooks/hardware/recipes/default.rb index 8c587d9f0..a508fff6b 100644 --- a/cookbooks/hardware/recipes/default.rb +++ b/cookbooks/hardware/recipes/default.rb @@ -148,6 +148,11 @@ template "/etc/initramfs-tools/conf.d/mdadm" do notifies :run, "execute[update-initramfs]" end +package "haveged" +service "haveged" do + action [:enable, :start] +end + if node[:kernel][:modules].include?("ipmi_si") package "ipmitool" end