aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/thinkpad.pp
blob: 4499ed632e11195864ac674dd32076f905db2ee2 (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::thinkpad (
  $ensure = 'installed',
) {
  # Keyboard
  package { [
    'tpb',
  ]:
    ensure => $ensure,
  }

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

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