aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/thinkpad.pp
blob: a712048b9318917944257fe5a537abb87dd12cbb (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 => installed
  }

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