blob: f533188632e77a35f9d84fb2beb47314b921b56a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class nodo::base::physical inherits nodo::base::host {
$smartmontools = hiera('nodo::smartmontools', true)
if $smartmontools == true {
class { 'smartmontools': }
}
package { 'lm-sensors':
ensure => present,
}
}
|