Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / modules / haveged / manifests / init.pp
1 class haveged {
2         $ensure = ($::haveged) ? {
3                 true    => 'present',
4                 default => 'absent'
5         }
6
7
8         if ($haveged) {
9                 service { 'haveged':
10                         ensure => running,
11                 }
12         }
13
14         # work around #858134
15         dsa_systemd::override { 'haveged':
16                 ensure => $ensure,
17                 content => @(EOT)
18                         [Unit]
19                         After=systemd-tmpfiles-setup.service
20                         | EOT
21         }
22 }