Make the www.d.o apache config a template
[mirror/dsa-puppet.git] / modules / hardware / manifests / init.pp
index e87de20..c7c7a28 100644 (file)
@@ -1,14 +1,11 @@
 class hardware {
-       if $::smartarraycontroller {
-               include debian-org::proliant
-       }
-
-       if $::productname == 'PowerEdge 2850' {
-               include megactl
-       }
+       include hardware::raid
 
-       if $::mptraid {
-               include raidmpt
+       case $::systemproductname {
+               "ProLiant BL495c G5": {
+                       file { '/etc/apt/preferences.d/dsa-hp-tools':
+                               content => "Package: hp-health\nPin: version 8.6*\nPin-Priority: 1100\n"
+                       }
+               }
        }
-
 }