From: Silvio Rhatto Date: Sun, 5 Feb 2017 18:53:51 +0000 (-0200) Subject: Adds back nodo::utils::laptop::thinkpad X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=c9c7ec8873a97879ae98fa675ff5e935f7ce1dff;p=puppet-nodo.git Adds back nodo::utils::laptop::thinkpad --- 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, + } +}