From c9c7ec8873a97879ae98fa675ff5e935f7ce1dff Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 5 Feb 2017 16:53:51 -0200 Subject: Adds back nodo::utils::laptop::thinkpad --- manifests/utils/laptop/thinkpad.pp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 manifests/utils/laptop/thinkpad.pp (limited to 'manifests/utils') 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, + } +} -- cgit v1.2.3