diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-07-29 10:19:56 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-07-29 10:19:56 -0300 |
commit | 80034bc49561eecf72a06af532dab5fcec96ae6e (patch) | |
tree | 4ffdc93c5ca2f8e65d595305cf3a1b7e9bcaa098 /manifests/utils | |
parent | afa6fa19428f93d35832cdf006d6e3b6e64e2b6f (diff) | |
download | puppet-nodo-80034bc49561eecf72a06af532dab5fcec96ae6e.tar.gz puppet-nodo-80034bc49561eecf72a06af532dab5fcec96ae6e.tar.bz2 |
Adds memtest86+ into nodo::utils::physical
Diffstat (limited to 'manifests/utils')
-rw-r--r-- | manifests/utils/physical.pp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/manifests/utils/physical.pp b/manifests/utils/physical.pp index 0c99fb9..acadaca 100644 --- a/manifests/utils/physical.pp +++ b/manifests/utils/physical.pp @@ -15,4 +15,19 @@ class nodo::utils::physical { default => present, } } + + # + # Testers / health check + # + + #package { 'memtester': + # ensure => present, + #} + + package { 'memtest86+': + ensure => $::architecture ? { + 'amd64' => present, + default => absent, + } + } } |