aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/thinkpad.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/thinkpad.pp')
-rw-r--r--manifests/utils/thinkpad.pp8
1 files changed, 5 insertions, 3 deletions
diff --git a/manifests/utils/thinkpad.pp b/manifests/utils/thinkpad.pp
index ae25178..a712048 100644
--- a/manifests/utils/thinkpad.pp
+++ b/manifests/utils/thinkpad.pp
@@ -1,9 +1,11 @@
-class nodo::utils::thinkpad {
+class nodo::utils::thinkpad (
+ $ensure = 'installed',
+) {
# Keyboard
package { [
'tpb',
]:
- ensure => installed,
+ ensure => $ensure,
}
# Thinkfan
@@ -17,6 +19,6 @@ class nodo::utils::thinkpad {
package { [
'hdapsd',
]:
- ensure => installed,
+ ensure => $ensure,
}
}