aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/laptop/thinkpad.pp
blob: fb722a58b55895eccb2a2c1aab77c448df71406e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class nodo::utils::laptop::thinkpad (
  $ensure = 'installed',
) {
  # Keyboard
  package { [
    'tpb',
  ]:
    ensure => $ensure,
  }

  # Thinkfan
  package { [
    'thinkfan',
  ]:
    ensure => $ensure,
  }

  # HDAPS
  package { [
    'hdapsd',
  ]:
    ensure => $ensure,
  }
}