diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 15:55:00 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 15:55:00 -0300 |
commit | ef8587359598e3fc211d30d06ba71c751bbec6ce (patch) | |
tree | e4b4f5a7158d3750c08a4eb76a1ac42113476496 /manifests/utils/storage | |
parent | 1f66e43f640ccbf7618d372dd215131dd81e39e1 (diff) | |
download | puppet-nodo-ef8587359598e3fc211d30d06ba71c751bbec6ce.tar.gz puppet-nodo-ef8587359598e3fc211d30d06ba71c751bbec6ce.tar.bz2 |
Adding storage layer packages (raid, lvm, cryptsetup) into nodo::utils::storage::layer
Diffstat (limited to 'manifests/utils/storage')
-rw-r--r-- | manifests/utils/storage/layer.pp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/manifests/utils/storage/layer.pp b/manifests/utils/storage/layer.pp new file mode 100644 index 0000000..6db6e2d --- /dev/null +++ b/manifests/utils/storage/layer.pp @@ -0,0 +1,5 @@ +class nodo:utils::storage::layer { + package { [ 'mdadm', 'cryptsetup', 'lvm2' ]: + ensure => installed, + } +} |