blob: 60a506b1fbc5640f7ee939469fa796be85eac4a3 (
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,
  }
}
  |