aboutsummaryrefslogtreecommitdiff
path: root/manifests/utils/physical.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-07-29 10:19:56 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-07-29 10:19:56 -0300
commit80034bc49561eecf72a06af532dab5fcec96ae6e (patch)
tree4ffdc93c5ca2f8e65d595305cf3a1b7e9bcaa098 /manifests/utils/physical.pp
parentafa6fa19428f93d35832cdf006d6e3b6e64e2b6f (diff)
downloadpuppet-nodo-80034bc49561eecf72a06af532dab5fcec96ae6e.tar.gz
puppet-nodo-80034bc49561eecf72a06af532dab5fcec96ae6e.tar.bz2
Adds memtest86+ into nodo::utils::physical
Diffstat (limited to 'manifests/utils/physical.pp')
-rw-r--r--manifests/utils/physical.pp15
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,
+ }
+ }
}