diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-08-25 08:31:49 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-08-25 08:31:49 -0300 |
commit | e24ba165d9e152627ea1bab18362505e236aa29b (patch) | |
tree | 830db8b05cff60fd7ba429720753241831ae0365 /manifests | |
parent | 0bc3fcae0c98166fd82759959a0ad2f14045b724 (diff) | |
download | puppet-nodo-e24ba165d9e152627ea1bab18362505e236aa29b.tar.gz puppet-nodo-e24ba165d9e152627ea1bab18362505e236aa29b.tar.bz2 |
Make nodo::utils::web::hardened ensurable
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils/web/hardened.pp | 6 |
1 files changed, 4 insertions, 2 deletions
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, } } |