aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/thinkpad.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-09-23 16:29:26 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-09-23 16:29:26 -0300
commit4a880ad141c8deefb41549e5e79c868303e1c296 (patch)
tree259be8415b54beb82bcafa6fed2114de49a627b4 /manifests/utils/thinkpad.pp
parent50d24f812a1ea34e190632cfef4b217490d7522d (diff)
downloadpuppet-nodo-4a880ad141c8deefb41549e5e79c868303e1c296.tar.gz
puppet-nodo-4a880ad141c8deefb41549e5e79c868303e1c296.tar.bz2
Coding style for utilities
Diffstat (limited to 'manifests/utils/thinkpad.pp')
-rw-r--r--manifests/utils/thinkpad.pp12
1 files changed, 9 insertions, 3 deletions
diff --git a/manifests/utils/thinkpad.pp b/manifests/utils/thinkpad.pp
index d595dbc..ae25178 100644
--- a/manifests/utils/thinkpad.pp
+++ b/manifests/utils/thinkpad.pp
@@ -1,16 +1,22 @@
class nodo::utils::thinkpad {
# Keyboard
- package { 'tpb':
+ package { [
+ 'tpb',
+ ]:
ensure => installed,
}
# Thinkfan
- package { 'thinkfan':
+ package { [
+ 'thinkfan',
+ ]:
ensure => installed
}
# HDAPS
- package { 'hdapsd':
+ package { [
+ 'hdapsd',
+ ]:
ensure => installed,
}
}