diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 15:51:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-06-27 15:51:48 -0300 |
commit | 1f66e43f640ccbf7618d372dd215131dd81e39e1 (patch) | |
tree | 55e573356bb1413bf30378e08906708222a947b3 | |
parent | f8d52348f58c359871d76ea21e4f50730e3fdd74 (diff) | |
download | puppet-nodo-1f66e43f640ccbf7618d372dd215131dd81e39e1.tar.gz puppet-nodo-1f66e43f640ccbf7618d372dd215131dd81e39e1.tar.bz2 |
Adding storage layer packages (raid, lvm, cryptsetup) into nodo::utils::physical
-rw-r--r-- | manifests/utils/physical.pp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/manifests/utils/physical.pp b/manifests/utils/physical.pp index 97d0945..a118627 100644 --- a/manifests/utils/physical.pp +++ b/manifests/utils/physical.pp @@ -4,6 +4,10 @@ class nodo::utils::physical { ensure => installed, } + package { [ 'mdadm', 'cryptsetup', 'lvm2' ]: + ensure => installed, + } + package { 'acpi': ensure => $::architecture ? { 'armv5tel' => absent, |