Split out haveged module

The spec:
http://specs.openstack.org/openstack-infra/infra-specs/specs/puppet-modules.html

Depends-On: I576f8fb2785591abd8b57d8ca33c757d61c56508
Change-Id: Iea569c0a8ad6048ac7916549594fac0b7c792bfa
This commit is contained in:
Mikhail S Medvedev 2015-01-28 17:50:02 -06:00
parent b72120ea8f
commit a3ce1ca77c
2 changed files with 1 additions and 13 deletions

View File

@ -78,6 +78,7 @@ INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-jenkins"]=
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-kerberos"]="origin/master"
INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-pip"]="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],
}
}