aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/development/ide.pp
blob: 9dc3faad8c28ea3c1949983a359ba844864809eb (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
class nodo::utils::development::ide {
  # In use
  package { [ 'mr', 'hexedit', 'ack-grep', 'markdown', 'python-sphinx' ]:
    ensure => installed,
  }

  # Not in use
  package { [ 'ttyrec',
              'bugs-everywhere',
              'silversearcher-ag',
              'ticgit',
              'ticgitweb',
              'ditz',
              'pnopaste-cli',
              'exuberant-ctags',
              'doxygen',
              'agave',
              'hexedit',
              'ack-grep',
              'markdown',
              'python-sphinx' ]:
    ensure => absent,
  }
}