From: Silvio Rhatto Date: Fri, 29 Jul 2016 13:19:56 +0000 (-0300) Subject: Adds memtest86+ into nodo::utils::physical X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=80034bc49561eecf72a06af532dab5fcec96ae6e;p=puppet-nodo.git Adds memtest86+ into nodo::utils::physical --- 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, + } + } }