aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-08-25 08:31:49 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-08-25 08:31:49 -0300
commite24ba165d9e152627ea1bab18362505e236aa29b (patch)
tree830db8b05cff60fd7ba429720753241831ae0365
parent0bc3fcae0c98166fd82759959a0ad2f14045b724 (diff)
downloadpuppet-nodo-e24ba165d9e152627ea1bab18362505e236aa29b.tar.gz
puppet-nodo-e24ba165d9e152627ea1bab18362505e236aa29b.tar.bz2
Make nodo::utils::web::hardened ensurable
-rw-r--r--manifests/utils/web/hardened.pp6
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,
}
}