aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils.pp')
-rw-r--r--manifests/utils.pp9
1 files changed, 8 insertions, 1 deletions
diff --git a/manifests/utils.pp b/manifests/utils.pp
index 365674f..770d027 100644
--- a/manifests/utils.pp
+++ b/manifests/utils.pp
@@ -1,12 +1,19 @@
# Common utilities
class nodo::utils {
- package { [ 'screen', 'less', 'bzip2', 'openssl', 'lynx', 'wget', 'unzip',
+ package { [ 'screen', 'less', 'bzip2', 'openssl', 'lynx', 'unzip',
'nmap', 'telnet', 'tree', 'whois', 'dosfstools', 'dnsutils', 'secure-delete',
'bc', 'lsof', 'wipe', 'vrms', 'nsca-client', 'uuid-runtime', 'vim-nox',
'multitail', 'bash-completion', 'zsh' ]:
ensure => installed,
}
+ # Might be defined elsewhere
+ if !defined(Package['wget']) {
+ package { 'wget':
+ ensure => installed,
+ }
+ }
+
# Not using right now
package { [ 'logcheck', 'logcheck-database' ]:
ensure => absent,