Pin older hp-health on DL3*0 G5
[mirror/dsa-puppet.git] / modules / hardware / manifests / init.pp
index b09bf92..e1cf5fc 100644 (file)
@@ -1,11 +1,19 @@
 class hardware {
        include hardware::raid
 
-       case $::systemproductname {
-               "ProLiant BL495c G5": {
-                       file { '/etc/apt/preferences.d/dsa-hp-tools':
-                               content => "Package: hp-health\n: version 8.6*\nPin-Priority: 1100\n"
-                       }
+       if "$::systemproductname" in ["ProLiant DL385 G1", "ProLiant DL380 G4", "ProLiant DL360 G4"] {
+               file { '/etc/apt/preferences.d/dsa-hp-tools':
+                       content => "Package: hp-health\nPin: version 8.6*\nPin-Priority: 1100\n"
+               }
+       } elsif "$::systemproductname" in ["ProLiant DL380 G5", "ProLiant DL360 G5"] {
+               file { '/etc/apt/preferences.d/dsa-hp-tools':
+                       content => "Package: hp-health\nPin: version 10.0.*\nPin-Priority: 1100\n"
+               }
+       } else {
+               file { '/etc/apt/preferences.d/dsa-hp-tools':
+                       ensure => absent
                }
        }
+
+       include hardware::sensors
 }