aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/base/host.pp1
-rw-r--r--manifests/utils/storage/crypto.pp5
-rw-r--r--manifests/utils/storage/layer.pp4
3 files changed, 9 insertions, 1 deletions
diff --git a/manifests/base/host.pp b/manifests/base/host.pp
index f9af2e1..c353281 100644
--- a/manifests/base/host.pp
+++ b/manifests/base/host.pp
@@ -6,6 +6,7 @@ class nodo::base::host {
include nodo::subsystem::sysctl
include nodo::subsystem::resolver
include nodo::utils::physical
+ include nodo::utils::storage::crypto
class { 'syslog-ng': }
monkeysphere_host { "${::hostname}": }
diff --git a/manifests/utils/storage/crypto.pp b/manifests/utils/storage/crypto.pp
new file mode 100644
index 0000000..5e1e268
--- /dev/null
+++ b/manifests/utils/storage/crypto.pp
@@ -0,0 +1,5 @@
+class nodo::utils::storage::crypto {
+ package { 'cryptsetup':
+ ensure => installed,
+ }
+}
diff --git a/manifests/utils/storage/layer.pp b/manifests/utils/storage/layer.pp
index 3847cd3..a12b2d2 100644
--- a/manifests/utils/storage/layer.pp
+++ b/manifests/utils/storage/layer.pp
@@ -1,5 +1,7 @@
class nodo::utils::storage::layer {
- package { [ 'mdadm', 'cryptsetup', 'lvm2' ]:
+ include nodo::utils::storage::crypto
+
+ package { [ 'mdadm', 'lvm2' ]:
ensure => installed,
}
}