From: Silvio Rhatto Date: Thu, 17 Apr 2014 18:26:27 +0000 (-0300) Subject: Adding ecryptfs-utils into nodo::utils::storage::crypto X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=d6188149eaa616baf4567ab596cb52b47eb332fe;p=puppet-nodo.git Adding ecryptfs-utils into nodo::utils::storage::crypto --- 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, } }