X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Fhardware%2Fmanifests%2Finit.pp;h=271b8f81d2510072eeef1f807dd2325cff11f6c6;hb=9476f6b0e0f2e86436f9b2656bef781534247ec0;hp=e87de20581c0133f1482beab610694b1cf2c4b22;hpb=715fc376f9772fc3477ef6caae561b168a1f69b9;p=dsa-puppet.git diff --git a/modules/hardware/manifests/init.pp b/modules/hardware/manifests/init.pp index e87de205..271b8f81 100644 --- a/modules/hardware/manifests/init.pp +++ b/modules/hardware/manifests/init.pp @@ -1,14 +1,15 @@ class hardware { - if $::smartarraycontroller { - include debian-org::proliant - } - - if $::productname == 'PowerEdge 2850' { - include megactl - } + include hardware::raid - if $::mptraid { - include raidmpt + if "$::systemproductname" in ["ProLiant BL495c G5", "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" + } + } else { + file { '/etc/apt/preferences.d/dsa-hp-tools': + ensure => absent + } } + include hardware::sensors }