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