]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/nagios/templates/obsolete-packages-ignore.d-hostspecific.erb
Remove decomissioned arm* references
[dsa-puppet.git] / modules / nagios / templates / obsolete-packages-ignore.d-hostspecific.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 <%=
7 ignore = []
8 case fqdn
9 when "cilea.debian.org" then                                   ignore << "/freeswitch.*/"
10 when /draghi.debian.org/ then                                  ignore << %w{userdir-ldap userdir-ldap-cgi libheimdal-kadm5-perl django-ldapdb ud python-cdb python-nameparser}
11 when /orff.debian.org/ then                                    ignore << %w{libnet-dns-sec-perl libnet-dns-zone-parser-perl}
12 when /(zandonai|zelenka).debian.org/ then                      ignore << %w{samhain zabbix-agent rrdcollect}
13 when /zappa.debian.org/ then                                   ignore << %w{samhain}
14 when /(mayer|corelli).debian.org/ then                         ignore << "linux-base"
15 when /(alkman|caballero|merulo|mundy|zani).debian.org/ then    ignore << "samhain"
16 when "franck.debian.org" then                                  ignore << %w{python-apt}
17 when /(abel|arnold|alwyn|antheil|arne).debian.org/ then  ignore << %w{flash-kernel linux-firmware-image}
18 when /harris.debian.org/ then                                  ignore << %w{flash-kernel kernel linux-firmware-image}
19 when /(hasse|henze|howells|hummel|hoiby).debian.org/ then ignore << %w{flash-kernel kernel linux-firmware-image}
20 when /(parry|partch).debian.org/ then                          ignore << "yaboot"
21 when "blavet.debian.org" then                                  ignore << %w{dpkg-dev libdpkg-perl dpkg}
22 when "handel.debian.org" then                                  ignore << %w{puppet-dashboard}
23 when "reger.debian.org" then                                   ignore << %w{librt-extension-commandbymail-perl}
24 when /(rainier|rapoport).debian.org/ then                      ignore << %w{rabbitmq-server}
25 when /(pasquini|tristano).debian.org/ then                     ignore << %w{ganeti-instance-image}
26 when "zemlinsky.debian.org" then                               ignore << %w{initramfs-tools}
27 when "sibelius.debian.org" then                                ignore << %w{tivsm-ba tivsm-api64 gskssl64 gskcrypt64}
28 when "denis.debian.org" then                                   ignore << %w{libdns100 libbind9-90 libisccc90 bind9 liblwres90 libisc95 bind9utils libisccfg90}
29 when "vogler.debian.org" then                                  ignore << %w{repro libresiprocate-1.9 resiprocate-turn-server}
30 when /(mailly|muffat).debian.org/ then                         ignore << %w{python-dsa-mq}
31 end
32
33 case fqdn
34 when /geo[123].debian.org/ then                    ignore << %w{geoip-database}
35 end
36
37 if fqdn == "arne.debian.org"
38     ignore << %w{/linux-headers-.*/}
39 end
40
41 ignore.flatten.join("\n")
42 %>