]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Adding ecryptfs-utils into nodo::utils::storage::crypto
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 17 Apr 2014 18:26:27 +0000 (15:26 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 17 Apr 2014 18:26:27 +0000 (15:26 -0300)
manifests/utils/personal/debian.pp
manifests/utils/storage/crypto.pp

index 1280a667dbe0afc48646bc8ab36afd545f451ea3..39dbc14e4a2804d95c86b0b14ecef0cea7eb0633 100644 (file)
@@ -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,
   }
 
index 5e1e26816660574de1e3b4d44ac0bf00519ab38c..a683ff7f51ad9a8f64f9383df115d96c15cf2338 100644 (file)
@@ -1,5 +1,5 @@
 class nodo::utils::storage::crypto {
-  package { 'cryptsetup':
+  package { [ 'cryptsetup', 'ecryptfs-utils' ]:
     ensure => installed,
   }
 }