remove debian.restricted.list apt source on hosts without proliant raid
[mirror/dsa-puppet.git] / modules / hardware / manifests / raid / proliant.pp
index fe6cbc9..a19ec28 100644 (file)
@@ -1,29 +1,34 @@
 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      => "${::lsbdistcodename}-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,
+               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,
+                       }
+               }
 
-       if $::debarchitecture == 'amd64' {
-               package { 'lib32gcc1':
-                       ensure => installed,
+               if $::debarchitecture == 'amd64' {
+                       package { 'lib32gcc1':
+                               ensure => installed,
+                       }
+               }
+       } else {
+               site::aptrepo { 'debian.restricted':
+                       ensure => absent,
                }
        }
 }