]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/nagios/templates/inc-debian.org.erb
massive style guide fixups
[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 nagii = []
8 scope.lookupvar('site::localinfo').keys.sort.each do |node|
9   if scope.lookupvar('site::localinfo')[node]['nagiosmaster'] or scope.lookupvar('site::localinfo')[node]['extranrpeclient']
10     nagii << scope.lookupvar('site::allnodeinfo')[node]['ipHostNumber']
11   end
12 end
13
14 case fqdn when
15   'mundy.debian.org', 'penalosa.debian.org', 'caballero.debian.org', 'peri.debian.org' then
16     nagii << '192.34.35.49'
17 end
18
19 out = "allowed_hosts=" + nagii.join(',')
20 out
21 %>
22
23
24 # the string "system-in-shutdown" is used by the remote side to tell
25 # if a system is running shutdown.  We do not use check_nrpe's
26 # exit code as that does not reliably tell us if the check could
27 # not connect to the nrpe server or if the remote check returned not-null.
28 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
29 command[restart-ekey]=sudo /etc/init.d/ekeyd-egd-linux restart