From: Silvio Rhatto Date: Fri, 25 Aug 2017 11:31:49 +0000 (-0300) Subject: Make nodo::utils::web::hardened ensurable X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=e24ba165d9e152627ea1bab18362505e236aa29b;p=puppet-nodo.git Make nodo::utils::web::hardened ensurable --- diff --git a/manifests/utils/web/hardened.pp b/manifests/utils/web/hardened.pp index e5582d6..aee0635 100644 --- a/manifests/utils/web/hardened.pp +++ b/manifests/utils/web/hardened.pp @@ -1,9 +1,11 @@ -class nodo::utils::web::hardened inherits nodo::utils::web::gui { +class nodo::utils::web::hardened inherits nodo::utils::web::gui( + $ensure = 'installed', +) { package { [ 'torbrowser-launcher', 'xul-ext-requestpolicy', 'xul-ext-certificatepatrol', ]: - ensure => present, + ensure => $ensure, } }