run dsa-check-hpssacli out of cron on smartarraycontroller_hpsa hosts
[mirror/dsa-puppet.git] / modules / hardware / manifests / raid / proliant.pp
index 0f20e6f..711703b 100644 (file)
@@ -1,23 +1,47 @@
 class hardware::raid::proliant {
+       if $::smartarraycontroller {
+               site::aptrepo { 'debian.restricted':
+                       url        => 'http://db.debian.org/debian-admin',
+                       suite      => "${::lsbdistcodename}-restricted",
+                       components => 'non-free',
+               }
 
-       site::aptrepo { 'debian.restricted':
-               url        => 'http://db.debian.org/debian-admin',
-               suite      => 'lenny-restricted',
-               components => 'non-free',
-       }
+               package { 'hpacucli':
+                       ensure  => installed,
+                       tag    => extra_repo,
+               }
+               package { 'hpssacli':
+                       ensure  => installed,
+                       tag    => extra_repo,
+               }
+               if !("$::systemproductname" in ["ProLiant DL180 G5", "ProLiant DL120 G5", "ProLiant ML150 G5"]) {
+                       package { 'hp-health':
+                               ensure => installed,
+                               tag    => extra_repo,
+                       }
+               }
 
-       package { 'hpacucli':
-               ensure  => installed,
-               tag    => extra_repo,
-       }
-       package { 'hp-health':
-               ensure => installed,
-               tag    => extra_repo,
-       }
+               if $::debarchitecture == 'amd64' {
+                       package { 'lib32gcc1':
+                               ensure => installed,
+                       }
+               }
 
-       if $::debarchitecture == 'amd64' {
-               package { 'lib32gcc1':
-                       ensure => installed,
+               file { '/etc/cron.d/puppet-nagios-hpsa':
+                       ensure => ($::smartarraycontroller_hpsa) ? {
+                               true    => 'present',
+                               default => 'absent'
+                       },
+                       content  => @(EOF)
+                               SHELL=/bin/bash
+                               PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/nagios/plugins
+                               42 * * * 0 root sleep $(( $RANDOM \% 900 )); dsa-wrap-nagios-check dsa-check-hpssacli
+                               | EOF
+
+               }
+       } else {
+               site::aptrepo { 'debian.restricted':
+                       ensure => absent,
                }
        }
 }