lint fixes for the linux module
[mirror/dsa-puppet.git] / modules / linux / manifests / init.pp
1 # common bits for all linux hosts
2 class linux {
3   include ferm
4   include ferm::per_host
5   include entropykey
6   include rng_tools
7   if $::hostname in [fasolo, storace, sallinen, csail-node01, csail-node02] {
8     $blacklist_acpi_power_meter = true
9   }
10   if $blacklist_acpi_power_meter {
11     file { '/etc/modprobe.d/hwmon.conf':
12       content => 'blacklist acpi_power_meter'
13     }
14   }
15 }