Split haveged into its own class

We need it on KDC hosts too, so let's split it out so we can consume
it there.

Change-Id: Ib913694cc0fb9d09b1560acfde0b771192da3fdc
This commit is contained in:
Monty Taylor 2014-10-19 11:58:57 -07:00
commit 41b79480fb
1 changed files with 13 additions and 0 deletions

13
manifests/init.pp Normal file
View File

@ -0,0 +1,13 @@
# Install and run haveged to provide entropy
class haveged {
package { 'haveged':
ensure => present,
}
service { 'haveged':
enable => true,
require => Package[haveged],
}
}