]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Adds nodo::utils::base feature/cleanup
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 8 Feb 2016 05:40:07 +0000 (03:40 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 8 Feb 2016 05:40:07 +0000 (03:40 -0200)
manifests/utils/base.pp [new file with mode: 0644]

diff --git a/manifests/utils/base.pp b/manifests/utils/base.pp
new file mode 100644 (file)
index 0000000..f7ff201
--- /dev/null
@@ -0,0 +1,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,
+  }
+}