aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/office.pp
blob: ceb74ab156caf73fdfa7f28963deceb1dadd976f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class nodo::utils::office (
  $ensure = 'installed',
) {
  package { [
    'taskwarrior',
    'timewarrior',
    'bugwarrior',
    'vit',
    'tasksh',
    'python-powerline-taskwarrior',
    'watson',
    #'hledger',
  ]:
    ensure => present,
  }

  # Not in use
  package { [
    'kalarm',
    'gnumeric',
    'jekyll',
    'hledger',
    'dia',
    'calibre',
  ]:
    ensure => absent,
  }
}