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

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

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