aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/laptop/thinkpad/battery.pp
blob: 9073f048fd0059e07587ac04b699c3d4b56e8a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# apci-call or tp-smapi available
class nodo::utils::laptop::thinkpad::battery(
  $implementation = 'acpi-call',
) {
  package { 'tlp':
    ensure => present,
  }

  package { "${implementation}-dkms":
    ensure => present,
  }
}