55bd740e5729cb92766d0ebe1f56e143c5222252
[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         package { 'hp-health':
14                 ensure => installed,
15                 tag    => extra_repo,
16         }
17
18         if $::debarchitecture == 'amd64' {
19                 package { 'lib32gcc1':
20                         ensure => installed,
21                 }
22         }
23 }