Move all per-host obsolete-packages-ignore.d-hostspecific files into the template
[mirror/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 # this fine intentially kept empty
7 <%=
8 ignore = []
9 case fqdn
10 when /(bellini|cimarosa).debian.org/: ignore << "mcelog"
11 when /draghi.debian.org/:             ignore << "userdir-ldap"
12 when /geo[123].debian.org/:           ignore << %w{geoip-database libgeoip1 geoip-bin}
13 when /liszt.debian.org/:              ignore << "amavisd-new"
14 when /stabile.debian.org/:            ignore << "xfsprogs"
15 when /(zandonai|zelenka).debian.org/: ignore << %w{zabbix-agent rrdcollect}
16 end
17
18 ignore.flatten.join("\n")
19 %>