aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/base.pp
blob: f7ff201b0cae5a2e9dd982e26342cf380dd0cfb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class nodo::utils::base {
  package { [ 'screen',    'less',   'bzip2', 'openssl', 'lynx',         'unzip',
              'nmap',      'telnet', 'tree',  'whois',   'dosfstools',   'dnsutils',     'secure-delete',
              'bc',        'lsof',   'wipe',  'vrms',    'nsca-client',  'uuid-runtime',
              'multitail', 'bash-completion', 'zsh' ]:
    ensure => installed,
  }

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