aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/base.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/base.pp')
-rw-r--r--manifests/utils/base.pp35
1 files changed, 30 insertions, 5 deletions
diff --git a/manifests/utils/base.pp b/manifests/utils/base.pp
index f7ff201..b17e574 100644
--- a/manifests/utils/base.pp
+++ b/manifests/utils/base.pp
@@ -1,13 +1,38 @@
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' ]:
+ 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' ]:
+ package { [
+ 'logcheck',
+ 'logcheck-database',
+ 'denyhosts',
+ 'logwatch',
+ ]:
ensure => absent,
}
}