projects
/
mirror
/
dsa-puppet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
storace also makes ACPI noises about power_meter
[mirror/dsa-puppet.git]
/
modules
/
linux
/
manifests
/
init.pp
1
class linux {
2
include ferm
3
include ferm::per_host
4
include entropykey
5
include rng_tools
6
if $::hostname in [fasolo, klecker, mirror-conova, storace] {
7
$blacklist_acpi_power_meter = true
8
}
9
if $blacklist_acpi_power_meter {
10
file { '/etc/modprobe.d/hwmon.conf':
11
content => "blacklist acpi_power_meter"
12
}
13
}
14
}