aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office/gui.pp
blob: 70489acd6ecde942470ea4e52c2918c38d89ff3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class nodo::utils::office::gui (
  $ensure = 'installed',
) {
  package { [
    'gobby',
    'libreoffice',
    'zathura',
    'zathura-djvu',
    'fbreader',
    'mupdf',
    #'pdftk',
    #'evince',
    #'aewan',
  ]:
    ensure => $ensure,
  }
}