From 0769dbd139e70ba2f5bd879a3365badcc946a620 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Mon, 11 Aug 2014 16:21:14 -0700 Subject: [PATCH] Make sure we actually run haveged on our slaves We bother installing it, which on ubuntu makes sure the service is running. But on centos, things don't start unless you tell them to. Tell puppet to tell centos to tell haveged to run so that we can have entropy. Change-Id: Ib4ffb00b30123e3b29c7e92466c5060165a83b19 --- modules/jenkins/manifests/slave.pp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/jenkins/manifests/slave.pp b/modules/jenkins/manifests/slave.pp index f55625d602..75a0e35e20 100644 --- a/modules/jenkins/manifests/slave.pp +++ b/modules/jenkins/manifests/slave.pp @@ -194,4 +194,9 @@ class jenkins::slave( group => 'root', mode => '0755', } + + service { 'haveged': + ensure => 'running', + require => Package[$::jenkins::params::haveged_package], + } }