aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-02-05 16:53:51 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-02-05 16:53:51 -0200
commitc9c7ec8873a97879ae98fa675ff5e935f7ce1dff (patch)
treef9089df47bfb08b4ba8ea7b79bdd09a99d0af431
parent93e150af502e73d0c93808d6af0c48a94d0f4dbd (diff)
downloadpuppet-nodo-c9c7ec8873a97879ae98fa675ff5e935f7ce1dff.tar.gz
puppet-nodo-c9c7ec8873a97879ae98fa675ff5e935f7ce1dff.tar.bz2
Adds back nodo::utils::laptop::thinkpad
-rw-r--r--manifests/utils/laptop/thinkpad.pp24
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,
+ }
+}