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

  # Not in use
  package { [
    'gobby',
  ]:
    ensure => absent,
  }
}