aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/storage/crypto.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/utils/storage/crypto.pp')
-rw-r--r--manifests/utils/storage/crypto.pp6
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/utils/storage/crypto.pp b/manifests/utils/storage/crypto.pp
index 0a0d520..0de92c0 100644
--- a/manifests/utils/storage/crypto.pp
+++ b/manifests/utils/storage/crypto.pp
@@ -1,8 +1,10 @@
-class nodo::utils::storage::crypto {
+class nodo::utils::storage::crypto (
+ $ensure = 'installed',
+) {
package { [
'cryptsetup',
'ecryptfs-utils',
]:
- ensure => installed,
+ ensure => $ensure,
}
}