aboutsummaryrefslogtreecommitdiff
path: root/manifests/base/physical.pp
blob: 936a21fa3c8d616acc590f13eca094ad3ef5f72d (plain)
1
2
3
4
5
6
7
8
9
10
11
class nodo::base::physical inherits nodo::base::host {
  $smartmontools = lookup('nodo::smartmontools', undef, undef, true)

  if $smartmontools == true {
    class { 'smartmontools': }
  }

  package { [ 'lm-sensors', 'hddtemp' ]:
    ensure => present,
  }
}