aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/web/hardened.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/web/hardened.pp')
-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,
}
}