diff options
| -rw-r--r-- | manifests/utils.pp | 13 | 
1 files changed, 9 insertions, 4 deletions
| diff --git a/manifests/utils.pp b/manifests/utils.pp index 224332d..8600615 100644 --- a/manifests/utils.pp +++ b/manifests/utils.pp @@ -1,12 +1,17 @@  # Common utilities  class nodo::utils { -  package { [ 'screen',    'less',   'bzip2', 'openssl', 'lynx',         'wget',     'unzip', -              'nmap',      'telnet', 'tree',  'whois',   'dosfstools',   'dnsutils', 'logcheck-database', -              'bc',        'lsof',   'wipe',  'vrms',    'nsca-client',  'logcheck', 'vim-nox', -              'multitail', 'bash-completion', 'zsh',     'uuid-runtime', 'denyhosts' ]: +  package { [ 'screen',    'less',   'bzip2', 'openssl', 'lynx',        'wget',     'unzip', +              'nmap',      'telnet', 'tree',  'whois',   'dosfstools',  'dnsutils', 'logcheck-database', +              'bc',        'lsof',   'wipe',  'vrms',    'nsca-client', 'logcheck', 'vim-nox', +              'multitail', 'bash-completion', 'zsh',     'uuid-runtime' ]:      ensure => installed,    } +  # We'll probably use https://github.com/puppetlabs/puppetlabs-denyhosts in the future +  package { 'denyhosts': +    ensure => purged, +  } +    # Maybe we use logwatch in the future    #package { 'logwatch':    #  ensure => installed, | 
