aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office.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/office.pp
parent50d24f812a1ea34e190632cfef4b217490d7522d (diff)
downloadpuppet-nodo-4a880ad141c8deefb41549e5e79c868303e1c296.tar.gz
puppet-nodo-4a880ad141c8deefb41549e5e79c868303e1c296.tar.bz2
Coding style for utilities
Diffstat (limited to 'manifests/utils/office.pp')
-rw-r--r--manifests/utils/office.pp54
1 files changed, 43 insertions, 11 deletions
diff --git a/manifests/utils/office.pp b/manifests/utils/office.pp
index 6c2b5a7..978efe8 100644
--- a/manifests/utils/office.pp
+++ b/manifests/utils/office.pp
@@ -1,28 +1,60 @@
class nodo::utils::office {
# Office
- package { [ 'vim-gtk', 'gobby', 'libreoffice',
- 'sc', 'antiword', 'unrtf',
- 'pandoc', 'wyrd',
- 'gnucash', 'worklog', 'pdftk',
- 'fbreader', 'pdfgrep',
- 'mat', 'evince',
- 'aewan', 'autocutsel',
- 'parcellite' ]:
+ package { [
+ 'vim-gtk',
+ 'gobby',
+ 'libreoffice',
+ 'sc',
+ 'antiword',
+ 'unrtf',
+ 'pandoc',
+ 'wyrd',
+ 'gnucash',
+ 'worklog',
+ 'pdftk',
+ 'fbreader',
+ 'pdfgrep',
+ 'mat',
+ 'evince',
+ 'aewan',
+ 'autocutsel',
+ 'parcellite',
+ ]:
ensure => installed,
}
# Finance
- package { [ 'ledger', 'clipf', 'misery' ]:
+ package { [
+ 'ledger',
+ 'clipf',
+ 'misery',
+ ]:
ensure => present,
}
# LaTeX
- package { [ 'texlive-latex-base', 'texlive-latex-recommended', 'texlive-latex-extra', 'texlive-fonts-extra', 'vim-latexsuite', 'pdfjam' ]:
+ package { [
+ 'texlive-latex-base',
+ 'texlive-latex-recommended',
+ 'texlive-latex-extra',
+ 'texlive-fonts-extra',
+ 'vim-latexsuite',
+ 'pdfjam',
+ ]:
ensure => present,
}
# Not in use
- package { [ 'kalarm', 'gnumeric', 'jekyll', 'taskwarrior', 'vit', 'hledger', 'dia', 'calibre' ]:
+ package { [
+ 'kalarm',
+ 'gnumeric',
+ 'jekyll',
+ 'taskwarrior',
+ 'vit',
+ 'hledger',
+ 'dia',
+ 'calibre',
+ ]:
ensure => absent,
}
}