From: Silvio Rhatto Date: Tue, 2 Jan 2018 20:55:52 +0000 (-0200) Subject: Adds wget into nodo::utils::http X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0a59b85a7ec87653a330ffb5098fa0a5862f210e;p=puppet-nodo.git Adds wget into nodo::utils::http --- diff --git a/manifests/utils/http.pp b/manifests/utils/http.pp index b8b7e78..1414837 100644 --- a/manifests/utils/http.pp +++ b/manifests/utils/http.pp @@ -6,4 +6,11 @@ class nodo::utils::http ( ]: ensure => $ensure, } + + # Might be defined elsewhere + if !defined(Package['wget']) { + package { 'wget': + ensure => installed, + } + } }