aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-02-05 12:15:53 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-02-05 12:15:53 -0200
commit93e150af502e73d0c93808d6af0c48a94d0f4dbd (patch)
tree5659d8a836a9ad8836e90a5251a82df3523ce479
parent864639c6c92ebdc7ff1d31a8ac15a2aa5963fb10 (diff)
downloadpuppet-nodo-93e150af502e73d0c93808d6af0c48a94d0f4dbd.tar.gz
puppet-nodo-93e150af502e73d0c93808d6af0c48a94d0f4dbd.tar.bz2
Renames nodo::utils::thinkpad to nodo::utils::laptop::thinkpad
-rw-r--r--manifests/utils/thinkpad.pp24
1 files changed, 0 insertions, 24 deletions
diff --git a/manifests/utils/thinkpad.pp b/manifests/utils/thinkpad.pp
deleted file mode 100644
index 4499ed6..0000000
--- a/manifests/utils/thinkpad.pp
+++ /dev/null
@@ -1,24 +0,0 @@
-class nodo::utils::thinkpad (
- $ensure = 'installed',
-) {
- # Keyboard
- package { [
- 'tpb',
- ]:
- ensure => $ensure,
- }
-
- # Thinkfan
- package { [
- 'thinkfan',
- ]:
- ensure => $ensure,
- }
-
- # HDAPS
- package { [
- 'hdapsd',
- ]:
- ensure => $ensure,
- }
-}