aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office/gui.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2022-02-03 11:00:34 -0300
committerSilvio Rhatto <rhatto@riseup.net>2022-02-03 11:00:34 -0300
commitcd7ed3d3440d6d2ea447dfda7d50651f8a8b88d4 (patch)
treef74eb24a3daeb2c455326482e48b76d363a0ec57 /manifests/utils/office/gui.pp
parent81a1bbedf04cd74ab75203fe9f1e285dd83abcbe (diff)
downloadpuppet-nodo-cd7ed3d3440d6d2ea447dfda7d50651f8a8b88d4.tar.gz
puppet-nodo-cd7ed3d3440d6d2ea447dfda7d50651f8a8b88d4.tar.bz2
Feat: adds nodo::utils::office::readers
Diffstat (limited to 'manifests/utils/office/gui.pp')
-rw-r--r--manifests/utils/office/gui.pp15
1 files changed, 7 insertions, 8 deletions
diff --git a/manifests/utils/office/gui.pp b/manifests/utils/office/gui.pp
index 0bfe3dc..6cde1aa 100644
--- a/manifests/utils/office/gui.pp
+++ b/manifests/utils/office/gui.pp
@@ -2,18 +2,17 @@ class nodo::utils::office::gui (
$ensure = 'installed',
) {
package { [
- 'gobby',
'libreoffice',
'libreoffice-gtk3',
- 'zathura',
- 'zathura-djvu',
- 'fbreader',
- 'mupdf',
- 'mupdf-tools',
#'pdftk',
- #'evince',
- #'aewan',
]:
ensure => $ensure,
}
+
+ # Not in use
+ package { [
+ 'gobby',
+ ]:
+ ensure => absent,
+ }
}