From fe1c86b8f938283e9dd8196a8b11a9648f4b49e6 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 12 Apr 2013 17:09:03 -0300 Subject: Major refactor --- manifests/utils/office.pp | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 manifests/utils/office.pp (limited to 'manifests/utils/office.pp') 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, + } + } +} -- cgit v1.2.3