aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/base.pp
blob: c4f5312d5977ed1065784466aa6c026a75e3f956 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class nodo::utils::base (
  $ensure = 'installed',
) {
  package { [
    'screen',
    'tmux',
    'less',
    'bzip2',
    'openssl',
    'lynx',
    'unzip',
    'nmap',
    'telnet',
    'tree',
    'whois',
    'dosfstools',
    'dnsutils',
    'secure-delete',
    'bc',
    'lsof',
    'wipe',
    'vrms',
    'uuid-runtime',
    'multitail',
    'bash-completion',
    'zsh',
    #pv,
    #gcp,
  ]:
    ensure => $ensure,
  }

  # Not using right now
  package { [
    'logcheck',
    'logcheck-database',
    'denyhosts',
    'logwatch',
    'nsca-client',
  ]:
    ensure => absent,
  }
}