no hp-health on DL1xx
[mirror/dsa-puppet.git] / modules / hardware / manifests / raid / proliant.pp
1 class hardware::raid::proliant {
2
3         site::aptrepo { 'debian.restricted':
4                 url        => 'http://db.debian.org/debian-admin',
5                 suite      => "${::lsbdistcodename}-restricted",
6                 components => 'non-free',
7         }
8
9         package { 'hpacucli':
10                 ensure  => installed,
11                 tag    => extra_repo,
12         }
13         if ! "$::systemproductname" in ["ProLiant DL180 G5", "ProLiant DL120 G5"] {
14                 package { 'hp-health':
15                         ensure => installed,
16                         tag    => extra_repo,
17                 }
18         }
19
20         if $::debarchitecture == 'amd64' {
21                 package { 'lib32gcc1':
22                         ensure => installed,
23                 }
24         }
25 }