projects
/
mirror
/
dsa-puppet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add TLS for video.debian.net and the redirects within it
[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
systemd::override { 'haveged':
16
ensure => $ensure,
17
content => @(EOT)
18
[Unit]
19
After=systemd-tmpfiles-setup.service
20
| EOT
21
}
22
}