diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-02-03 08:44:59 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-02-03 08:44:59 -0200 |
commit | 5a55d6224007f7ac0d0e6bd5f649e50b7d60ae3d (patch) | |
tree | ee327ce71af274376f664bd061eeef50b136e2f5 /manifests/utils/storage/crypto.pp | |
parent | 81316081a32a13a2b948033e78c2987df0bcc014 (diff) | |
download | puppet-nodo-5a55d6224007f7ac0d0e6bd5f649e50b7d60ae3d.tar.gz puppet-nodo-5a55d6224007f7ac0d0e6bd5f649e50b7d60ae3d.tar.bz2 |
Adds ensure param to utils classes
Diffstat (limited to 'manifests/utils/storage/crypto.pp')
-rw-r--r-- | manifests/utils/storage/crypto.pp | 6 |
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, } } |