]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Adds back nodo::utils::laptop::thinkpad
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 5 Feb 2017 18:53:51 +0000 (16:53 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 5 Feb 2017 18:53:51 +0000 (16:53 -0200)
manifests/utils/laptop/thinkpad.pp [new file with mode: 0644]

diff --git a/manifests/utils/laptop/thinkpad.pp b/manifests/utils/laptop/thinkpad.pp
new file mode 100644 (file)
index 0000000..fb722a5
--- /dev/null
@@ -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,
+  }
+}