aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-04-17 15:26:27 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-04-17 15:26:27 -0300
commitd6188149eaa616baf4567ab596cb52b47eb332fe (patch)
tree788bd4cdb2fe80c85a1223332bb279a69efa71b0
parent9c1662aa1110fa3840ac64498e9e7bab9ccd1683 (diff)
downloadpuppet-nodo-d6188149eaa616baf4567ab596cb52b47eb332fe.tar.gz
puppet-nodo-d6188149eaa616baf4567ab596cb52b47eb332fe.tar.bz2
Adding ecryptfs-utils into nodo::utils::storage::crypto
-rw-r--r--manifests/utils/personal/debian.pp7
-rw-r--r--manifests/utils/storage/crypto.pp2
2 files changed, 6 insertions, 3 deletions
diff --git a/manifests/utils/personal/debian.pp b/manifests/utils/personal/debian.pp
index 1280a66..39dbc14 100644
--- a/manifests/utils/personal/debian.pp
+++ b/manifests/utils/personal/debian.pp
@@ -2,9 +2,12 @@ class nodo::utils::personal::debian {
# ISO image handling
include nodo::utils::storage::iso
+ # Basic crypto
+ include nodo::utils::storage::crypto
+
# System
- package { [ 'libpam-mount', 'ecryptfs-utils', 'gawk',
- 'laptop-detect', 'ack-grep', 'mtp-tools' ]:
+ package { [ 'libpam-mount', 'gawk',
+ 'laptop-detect', 'ack-grep', 'mtp-tools' ]:
ensure => installed,
}
diff --git a/manifests/utils/storage/crypto.pp b/manifests/utils/storage/crypto.pp
index 5e1e268..a683ff7 100644
--- a/manifests/utils/storage/crypto.pp
+++ b/manifests/utils/storage/crypto.pp
@@ -1,5 +1,5 @@
class nodo::utils::storage::crypto {
- package { 'cryptsetup':
+ package { [ 'cryptsetup', 'ecryptfs-utils' ]:
ensure => installed,
}
}