Merge "Split out haveged module"

This commit is contained in:
Jenkins 2015-01-29 05:21:44 +00:00 committed by Gerrit Code Review
commit 377da793ff
2 changed files with 1 additions and 13 deletions

View File

@ -88,6 +88,7 @@ INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-kerberos"]
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-pip"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-tmpreaper"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-github"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-haveged"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-httpd"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-openstackid"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-planet"]="origin/master"

View File

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