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

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