aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/office.pp')
-rw-r--r--manifests/utils/office.pp29
1 files changed, 29 insertions, 0 deletions
diff --git a/manifests/utils/office.pp b/manifests/utils/office.pp
new file mode 100644
index 0000000..4c96670
--- /dev/null
+++ b/manifests/utils/office.pp
@@ -0,0 +1,29 @@
+class nodo::utils::office {
+ # Office
+ package { [ 'wyrd', 'vim-gtk', 'gobby',
+ 'sc', 'antiword', 'dia',
+ 'kalarm', 'texlive-latex-base', 'texlive-latex-recommended',
+ 'texlive-latex-extra', 'pandoc', 'gnumeric',
+ 'cups-client', 'hplip', 'cups-bsd',
+ 'gnucash', 'worklog', 'pdftk',
+ 'calibre', 'fbreader', 'gobby-0.5',
+ 'mat', 'evince-gtk', 'jekyll' ]:
+ ensure => installed,
+ }
+
+ # Squeeze only
+ package { 'broffice.org':
+ ensure => $::lsbdistcodename ? {
+ 'squeeze' => installed,
+ default => absent,
+ }
+ }
+
+ # Wheezy onwards
+ package { 'libreoffice':
+ ensure => $::lsbdistcodename ? {
+ 'squeeze' => absent,
+ default => installed,
+ }
+ }
+}