diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils/laptop/thinkpad.pp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/manifests/utils/laptop/thinkpad.pp b/manifests/utils/laptop/thinkpad.pp new file mode 100644 index 0000000..fb722a5 --- /dev/null +++ b/manifests/utils/laptop/thinkpad.pp @@ -0,0 +1,24 @@ +class nodo::utils::laptop::thinkpad ( + $ensure = 'installed', +) { + # Keyboard + package { [ + 'tpb', + ]: + ensure => $ensure, + } + + # Thinkfan + package { [ + 'thinkfan', + ]: + ensure => $ensure, + } + + # HDAPS + package { [ + 'hdapsd', + ]: + ensure => $ensure, + } +} |