blob: 8c3b1c4ae6e1e65c53abe4679ea528b2c419ef2f (
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', 'hddtemp' ]:
    ensure => present,
  }
}
 |