From a3ce1ca77cfa09afb1959c7507f72a0385399462 Mon Sep 17 00:00:00 2001 From: Mikhail S Medvedev Date: Wed, 28 Jan 2015 17:50:02 -0600 Subject: [PATCH] Split out haveged module The spec: http://specs.openstack.org/openstack-infra/infra-specs/specs/puppet-modules.html Depends-On: I576f8fb2785591abd8b57d8ca33c757d61c56508 Change-Id: Iea569c0a8ad6048ac7916549594fac0b7c792bfa --- modules.env | 1 + modules/haveged/manifests/init.pp | 13 ------------- 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 modules/haveged/manifests/init.pp diff --git a/modules.env b/modules.env index 790e5ade43..e60cc77dc0 100644 --- a/modules.env +++ b/modules.env @@ -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" diff --git a/modules/haveged/manifests/init.pp b/modules/haveged/manifests/init.pp deleted file mode 100644 index 0a5fb49ba6..0000000000 --- a/modules/haveged/manifests/init.pp +++ /dev/null @@ -1,13 +0,0 @@ -# Install and run haveged to provide entropy -class haveged { - - package { 'haveged': - ensure => present, - } - - service { 'haveged': - enable => true, - require => Package[haveged], - } - -}