fix up some usage of keyinfo
[mirror/dsa-puppet.git] / modules / nagios / templates / inc-debian.org.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 ournag = []
8 localinfo.keys.sort.each do |node|
9   if localinfo[node]['nagiosmaster']
10     ournag << keyinfo[node][0]['ipHostNumber']
11   end
12 end
13
14 nagii = ournag
15
16 case fqdn when
17   'mundy.debian.org', 'penalosa.debian.org', 'caballero.debian.org', 'peri.debian.org' then
18     nagii << '192.34.35.49'
19 end
20
21 out = "allowed_hosts=" + nagii.join(',')
22 out
23 %>
24
25
26 # the string "system-in-shutdown" is used by the remote side to tell
27 # if a system is running shutdown.  We do not use check_nrpe's
28 # exit code as that does not reliably tell us if the check could
29 # not connect to the nrpe server or if the remote check returned not-null.
30 command[dsa2_shutdown]=if /usr/lib/nagios/plugins/check_procs -w 1: -u root -C shutdown > /dev/null; then echo 'system-in-shutdown'; else echo 'no shutdown running' ; fi