diff --git a/inventory/inventory b/inventory/inventory index edef068885..0a8ce317ea 100644 --- a/inventory/inventory +++ b/inventory/inventory @@ -443,10 +443,7 @@ iddev.fedorainfracloud.org [dhcp] dhcp01.phx2.fedoraproject.org -#[nagios] -#noc02.fedoraproject.org - -[nagios-new] +[nagios] noc01.phx2.fedoraproject.org noc02.fedoraproject.org diff --git a/playbooks/groups/noc-new.yml b/playbooks/groups/noc-new.yml deleted file mode 100644 index b6c0142b73..0000000000 --- a/playbooks/groups/noc-new.yml +++ /dev/null @@ -1,74 +0,0 @@ -# This is a basic playbook -- include: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=nagios-new" - -- name: make the box be real - hosts: nagios-new - user: root - gather_facts: True - - vars_files: - - /srv/web/infra/ansible/vars/global.yml - - "/srv/private/ansible/vars.yml" - - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - - pre_tasks: - - include: "{{ tasks_path }}/yumrepos.yml" - - roles: - - base - - rkhunter - - nagios_client - - hosts - - fas_client - - collectd/base - - { role: rsyncd, when: datacenter == 'phx2' } - - sudo - - { role: openvpn/client, - when: env != "staging" } - - mod_wsgi - - role: keytab/service - owner_user: apache - owner_group: apache - service: HTTP - host: "nagios{{env_suffix}}.fedoraproject.org" - when: datacenter == 'phx2' - - role: keytab/service - owner_user: apache - owner_group: apache - service: HTTP - host: "nagios-external{{env_suffix}}.fedoraproject.org" - when: datacenter != 'phx2' - - - tasks: - - include: "{{ tasks_path }}/2fa_client.yml" - - include: "{{ tasks_path }}/motd.yml" - - handlers: - - include: "{{ handlers_path }}/restart_services.yml" - -- name: deploy service-specific config (just for production) - hosts: nagios-new - user: root - gather_facts: True - - vars_files: - - /srv/web/infra/ansible/vars/global.yml - - "/srv/private/ansible/vars.yml" - - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - - handlers: - - include: "{{ handlers_path }}/restart_services.yml" - - roles: - - { role: dhcp_server, when: datacenter == 'phx2' } - - { role: tftp_server, when: datacenter == 'phx2' } - - nagios_server - - fedmsg/base - - tasks: - - name: install some packages which arent in playbooks - yum: pkg={{ item }} state=present - with_items: - - nmap - - tcpdump diff --git a/playbooks/groups/noc.yml b/playbooks/groups/noc.yml index 928b0dd0a8..ce13fda12f 100644 --- a/playbooks/groups/noc.yml +++ b/playbooks/groups/noc.yml @@ -1,3 +1,4 @@ +# This is a basic playbook - include: "/srv/web/infra/ansible/playbooks/include/virt-create.yml myhosts=nagios" - name: make the box be real @@ -10,6 +11,9 @@ - "/srv/private/ansible/vars.yml" - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml + pre_tasks: + - include: "{{ tasks_path }}/yumrepos.yml" + roles: - base - rkhunter @@ -26,11 +30,17 @@ owner_user: apache owner_group: apache service: HTTP - host: "admin.fedoraproject.org" - when: env == "production" + host: "nagios{{env_suffix}}.fedoraproject.org" + when: datacenter == 'phx2' + - role: keytab/service + owner_user: apache + owner_group: apache + service: HTTP + host: "nagios-external{{env_suffix}}.fedoraproject.org" + when: datacenter != 'phx2' + tasks: - - include: "{{ tasks_path }}/yumrepos.yml" - include: "{{ tasks_path }}/2fa_client.yml" - include: "{{ tasks_path }}/motd.yml" @@ -46,7 +56,6 @@ - /srv/web/infra/ansible/vars/global.yml - "/srv/private/ansible/vars.yml" - /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml - - "/srv/web/infra/ansible/vars/nagios.{{ inventory_hostname_short }}.yml" handlers: - include: "{{ handlers_path }}/restart_services.yml" @@ -54,5 +63,12 @@ roles: - { role: dhcp_server, when: datacenter == 'phx2' } - { role: tftp_server, when: datacenter == 'phx2' } - - nagios/server + - nagios_server - fedmsg/base + + tasks: + - name: install some packages which arent in playbooks + yum: pkg={{ item }} state=present + with_items: + - nmap + - tcpdump diff --git a/roles/base/templates/syncHttpLogs.sh.j2 b/roles/base/templates/syncHttpLogs.sh.j2 index 3a56addb4b..e4525d568f 100644 --- a/roles/base/templates/syncHttpLogs.sh.j2 +++ b/roles/base/templates/syncHttpLogs.sh.j2 @@ -166,10 +166,6 @@ syncHttpLogs {{host}} old syncHttpLogs {{host}} {% endfor %} -{% for host in groups['nagios-new'] %} -syncHttpLogs {{host}} -{% endfor %} - ## sync up download {% for host in groups['download-phx2'] %} syncHttpLogs {{host}} diff --git a/roles/nagios/client/files/scripts/check_datanommer_timesince.py b/roles/nagios/client/files/scripts/check_datanommer_timesince.py deleted file mode 100755 index 66b4b2866d..0000000000 --- a/roles/nagios/client/files/scripts/check_datanommer_timesince.py +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env python -""" NRPE check for datanommer/fedmsg health. -Given a category like 'bodhi', 'buildsys', or 'git', return an error if -datanommer hasn't seen a message of that type in such and such time. -You can alternatively provide a 'topic' which might look like -org.fedoraproject.prod.bodhi.update.comment. - -Requires: python-dateutil - -Usage: - - $ check_datanommer_timesince CATEGORY WARNING_THRESH CRITICAL_THRESH - -:Author: Ralph Bean - -""" - -import dateutil.relativedelta -import subprocess -import sys -import json - - -def query_timesince(identifier): - # If it has a '.', then assume it is a topic. - if '.' in identifier: - cmd = 'datanommer-latest --topic %s --timesince' % identifier - else: - cmd = 'datanommer-latest --category %s --timesince' % identifier - sys.stderr.write("Running %r\n" % cmd) - process = subprocess.Popen(cmd.split(), shell=False, - stdout=subprocess.PIPE, stderr=subprocess.PIPE) - stdout, stderr = process.communicate() - prefix, stdout = stdout.split("INFO] ", 1) - data = json.loads(stdout) - return float(data[0]) - - -def main(): - identifier, warning_threshold, critical_threshold = sys.argv[-3:] - timesince = query_timesince(identifier) - warning_threshold = int(warning_threshold) - critical_threshold = int(critical_threshold) - - time_strings = [] - rd = dateutil.relativedelta.relativedelta(seconds=timesince) - for denomination in ['years', 'months', 'days', 'hours', 'minutes', 'seconds']: - value = getattr(rd, denomination, 0) - if value: - time_strings.append("%d %s" % (value, denomination)) - - string = ", ".join(time_strings) - reason = "datanommer has not seen a %r message in %s" % (identifier, string) - - if timesince > critical_threshold: - print "CRIT: ", reason - sys.exit(2) - - if timesince > warning_threshold: - print "WARN: ", reason - sys.exit(1) - - print "OK: ", reason - sys.exit(0) - - -if __name__ == '__main__': - try: - main() - except Exception as e: - print "UNKNOWN: ", str(e) - sys.exit(3) diff --git a/roles/nagios/client/files/scripts/check_fcomm_queue b/roles/nagios/client/files/scripts/check_fcomm_queue deleted file mode 100644 index b38d7f8664..0000000000 --- a/roles/nagios/client/files/scripts/check_fcomm_queue +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python -import sys - -try: - import retask.queue - - queue = retask.queue.Queue('fedora-packages') - queue.connect() - - items = queue.length - if items > 500: - print "CRITICAL: %i tasks in fcomm queue" % items - sys.exit(2) - elif items > 250: - print "WARNING: %i tasks in fcomm queue" % items - sys.exit(1) - else: - print "OK: %i tasks in fcomm queue" % items - sys.exit(0) - -except Exception as e: - print "UNKNOWN:", str(e) - sys.exit(3) diff --git a/roles/nagios/client/files/scripts/check_fedmsg_consumer_backlog.py b/roles/nagios/client/files/scripts/check_fedmsg_consumer_backlog.py deleted file mode 100644 index a70d49f41b..0000000000 --- a/roles/nagios/client/files/scripts/check_fedmsg_consumer_backlog.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env python - -import json -import os -import socket -import sys -import zmq - -try: - service = sys.argv[1] - check_consumer = sys.argv[2] - backlog_warning = int(sys.argv[3]) - backlog_critical = int(sys.argv[4]) - fname = '/var/run/fedmsg/monitoring-%s.socket' % service - - if not os.path.exists(fname): - print "UNKNOWN - %s does not exist" % fname - sys.exit(3) - - if not os.access(fname, os.W_OK): - print "UNKNOWN - cannot write to %s" % fname - sys.exit(3) - - connect_to = "ipc:///%s" % fname - ctx = zmq.Context() - s = ctx.socket(zmq.SUB) - s.connect(connect_to) - s.setsockopt(zmq.SUBSCRIBE, '') - - poller = zmq.Poller() - poller.register(s, zmq.POLLIN) - - timeout = 20000 - - events = dict(poller.poll(timeout)) - if s in events and events[s] == zmq.POLLIN: - msg = s.recv() - msg = json.loads(msg) - else: - print 'UNKNOWN - ZMQ timeout. No message received in %i ms' % timeout - sys.exit(3) - - for consumer in msg['consumers']: - if consumer['name'] == check_consumer: - if consumer['backlog'] is None: - print 'ERROR: fedmsg consumer %s is not initialized' % consumer['name'] - sys.exit(3) - elif consumer['backlog'] > backlog_critical: - print 'CRITICAL: fedmsg consumer %s backlog value is %i' % (consumer['name'],consumer['backlog']) - sys.exit(2) - elif consumer['backlog'] > backlog_warning: - print 'WARNING: fedmsg consumer %s backlog value is %i' % (consumer['name'],consumer['backlog']) - sys.exit(1) - else: - print 'OK: fedmsg consumer %s backlog value is %i' % (consumer['name'],consumer['backlog']) - sys.exit(0) - - print "UNKNOWN: fedmsg consumer %s not found" % check_consumer - sys.exit(3) -except Exception as err: - print "UNKNOWN:", str(err) - sys.exit(3) diff --git a/roles/nagios/client/files/scripts/check_fedmsg_consumer_exceptions.py b/roles/nagios/client/files/scripts/check_fedmsg_consumer_exceptions.py deleted file mode 100644 index 7fa5f6f4e4..0000000000 --- a/roles/nagios/client/files/scripts/check_fedmsg_consumer_exceptions.py +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env python - -import json -import os -import socket -import sys -import zmq - -try: - service = sys.argv[1] - check_consumer = sys.argv[2] - exceptions_warning = int(sys.argv[3]) - exceptions_critical = int(sys.argv[4]) - fname = '/var/run/fedmsg/monitoring-%s.socket' % service - - if not os.path.exists(fname): - print "UNKNOWN - %s does not exist" % fname - sys.exit(3) - - if not os.access(fname, os.W_OK): - print "UNKNOWN - cannot write to %s" % fname - sys.exit(3) - - connect_to = "ipc:///%s" % fname - ctx = zmq.Context() - s = ctx.socket(zmq.SUB) - s.connect(connect_to) - s.setsockopt(zmq.SUBSCRIBE, '') - poller = zmq.Poller() - poller.register(s, zmq.POLLIN) - - timeout = 20000 - - events = dict(poller.poll(timeout)) - if s in events and events[s] == zmq.POLLIN: - msg = s.recv() - msg = json.loads(msg) - else: - print 'UNKNOWN - ZMQ timeout. No message received in %i ms' % timeout - sys.exit(3) - - for consumer in msg['consumers']: - if consumer['name'] == check_consumer: - if consumer['exceptions'] > exceptions_critical: - print 'CRITICAL: fedmsg consumer %s exceptions value is %i' % (consumer['name'],consumer['exceptions']) - sys.exit(2) - elif consumer['exceptions'] > exceptions_warning: - print 'WARNING: fedmsg consumer %s exceptions value is %i' % (consumer['name'],consumer['exceptions']) - sys.exit(1) - else: - print 'OK: fedmsg consumer %s exceptions value is %i' % (consumer['name'],consumer['exceptions']) - sys.exit(0) - - print "UNKNOWN: fedmsg consumers %s not found" % check_consumer - sys.exit(3) -except Exception as err: - print "UNKNOWN:", str(err) - sys.exit(3) diff --git a/roles/nagios/client/files/scripts/check_fedmsg_producer_last_ran.py b/roles/nagios/client/files/scripts/check_fedmsg_producer_last_ran.py deleted file mode 100644 index 263d3c3351..0000000000 --- a/roles/nagios/client/files/scripts/check_fedmsg_producer_last_ran.py +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env python - -import arrow -import json -import os -import socket -import sys -import time -import zmq - -try: - service = sys.argv[1] - check_producer = sys.argv[2] - elapsed_warning = int(sys.argv[3]) - elapsed_critical = int(sys.argv[4]) - fname = '/var/run/fedmsg/monitoring-%s.socket' % service - - if not os.path.exists(fname): - print "UNKNOWN - %s does not exist" % fname - sys.exit(3) - - if not os.access(fname, os.W_OK): - print "UNKNOWN - cannot write to %s" % fname - sys.exit(3) - - connect_to = "ipc:///%s" % fname - ctx = zmq.Context() - s = ctx.socket(zmq.SUB) - s.connect(connect_to) - s.setsockopt(zmq.SUBSCRIBE, '') - - poller = zmq.Poller() - poller.register(s, zmq.POLLIN) - - timeout = 20000 - - events = dict(poller.poll(timeout)) - if s in events and events[s] == zmq.POLLIN: - msg = s.recv() - msg = json.loads(msg) - else: - print 'UNKNOWN - ZMQ timeout. No message received in %i ms' % timeout - sys.exit(3) - - now = time.time() - - for prod in msg['producers']: - if prod['name'] != check_producer: - continue - diff = now - prod['last_ran'] - then = arrow.get(prod['last_ran']).humanize() - if diff > elapsed_critical: - print "CRITICAL: %s last ran %s (%i seconds ago)" % ( - check_producer, then, diff) - sys.exit(2) - elif diff > elapsed_warning: - print "WARNING: %s last ran %s (%i seconds ago)" % ( - check_producer, then, diff) - sys.exit(1) - else: - print "OK: %s last ran %s (%i seconds ago)" % ( - check_producer, then, diff) - sys.exit(0) - - print "UNKNOWN: fedmsg producer %s not found" % check_producer - sys.exit(3) -except Exception as err: - print "UNKNOWN:", str(err) - sys.exit(3) diff --git a/roles/nagios/client/files/scripts/check_fedmsg_producers_consumers.py b/roles/nagios/client/files/scripts/check_fedmsg_producers_consumers.py deleted file mode 100644 index f5c00ccd12..0000000000 --- a/roles/nagios/client/files/scripts/check_fedmsg_producers_consumers.py +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/env python - -import json -import os -import socket -import sys -import zmq - -try: - service = sys.argv[1] - check_list = frozenset(sys.argv[2:]) - fname = '/var/run/fedmsg/monitoring-%s.socket' % service - - if not check_list: - print "UNKNOWN - empty list of fedmsg consumers and producers to check" - sys.exit(3) - - if not os.path.exists(fname): - print "UNKNOWN - %s does not exist" % fname - sys.exit(3) - - if not os.access(fname, os.W_OK): - print "UNKNOWN - cannot write to %s" % fname - sys.exit(3) - - connect_to = "ipc:///%s" % fname - ctx = zmq.Context() - s = ctx.socket(zmq.SUB) - s.connect(connect_to) - s.setsockopt(zmq.SUBSCRIBE, '') - poller = zmq.Poller() - poller.register(s, zmq.POLLIN) - - timeout = 20000 - - events = dict(poller.poll(timeout)) - if s in events and events[s] == zmq.POLLIN: - msg = s.recv() - msg = json.loads(msg) - else: - print 'UNKNOWN - ZMQ timeout. No message received in %i ms' % timeout - sys.exit(3) - - for consumer in msg['consumers']: - if consumer['name'] in check_list and not consumer['initialized']: - print 'ERROR: fedmsg consumer %s is not initialized' % consumer['name'] - sys.exit(2) - - for producer in msg['producers']: - if producer['name'] in check_list and not producer['initialized']: - print 'ERROR: fedmsg producer %s is not initialized' % producer['name'] - sys.exit(2) - - for item in check_list: - if item not in [p['name'] for p in msg['producers'] + msg['consumers']]: - print 'ERROR: %s not found among installed plugins' % item - sys.exit(2) - - print "OK: fedmsg consumer(s) and producer(s) initialized" - sys.exit(0) - -except Exception as err: - print "UNKNOWN:", str(err) - sys.exit(3) diff --git a/roles/nagios/client/files/scripts/check_haproxy_conns.py b/roles/nagios/client/files/scripts/check_haproxy_conns.py deleted file mode 100755 index e9e8c9f968..0000000000 --- a/roles/nagios/client/files/scripts/check_haproxy_conns.py +++ /dev/null @@ -1,76 +0,0 @@ -#!/usr/bin/env python -""" Nagios check for haproxy over-subscription. - -fedmsg-gateway is the primary concern as it can eat up a ton of simultaneous -connections. - -:Author: Ralph Bean -""" - -import socket -import sys - - -def _numeric(value): - """ Type casting utility """ - try: - return int(value) - except ValueError: - try: - return float(value) - except ValueError: - return value - - -def query(sockname="/var/run/haproxy-stat"): - """ Read stats from the haproxy socket and return a dict """ - s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) - s.connect("/var/run/haproxy-stat") - s.send('show info\n') - try: - response = s.recv(1024).strip() - lines = response.split('\n') - data = dict([map(str.strip, line.split(':')) for line in lines]) - data = dict([(k, _numeric(v)) for k, v in data.items()]) - return data - except Exception, e: - print str(e) - finally: - s.close() - - return None - - -def nagios_check(data): - """ Print warnings and return nagios exit codes. """ - - current = data['CurrConns'] - maxconn = data['Maxconn'] - percent = 100 * float(current) / float(maxconn) - details = "%.2f%% subscribed. %i current of %i maxconn." % ( - percent, current, maxconn, - ) - - if percent < 50: - print "HAPROXY SUBS OK: " + details - return 0 - - if percent < 75: - print "HAPROXY SUBS WARN: " + details - return 1 - - if percent <= 100: - print "HAPROXY SUBS CRIT: " + details - return 2 - - print "HAPROXY SUBS UNKNOWN: " + details - return 3 - - -if __name__ == '__main__': - try: - data = query(sockname="/var/run/haproxy-stat") - except Exception as e: - print "HAPROXY SUBS UNKNOWN: " + str(e) - sys.exit(3) - sys.exit(nagios_check(data)) diff --git a/roles/nagios/client/files/scripts/check_ipa_replication b/roles/nagios/client/files/scripts/check_ipa_replication deleted file mode 100644 index 96ff469cf2..0000000000 --- a/roles/nagios/client/files/scripts/check_ipa_replication +++ /dev/null @@ -1,74 +0,0 @@ -#!/usr/bin/python -# Source: https://github.com/opinkerfi/nagios-plugins/blob/master/check_ipa/check_ipa_replication -# Copyright 2013, Tomas Edwardsson -# Copyright 2016, Patrick Uiterwijk -# -# This script is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This script is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -import ldap -from pynag.Plugins import PluginHelper, critical, warning, ok - -plugin = PluginHelper() - -plugin.parser.add_option('-u', help="ldap uri", dest="uri") -plugin.parser.add_option('-D', help="bind DN", dest="binddn") -plugin.parser.add_option('-w', help="bind password", dest="bindpw") -plugin.parse_arguments() - -if not plugin.options.uri: - plugin.parser.error('-u (uri) argument is required') - -try: - l = ldap.initialize(plugin.options.uri) - - if plugin.options.binddn: - l.bind_s(plugin.options.binddn, plugin.options.bindpw) - - replication = l.search_s('cn=config', - ldap.SCOPE_SUBTREE, - '(objectclass=nsds5replicationagreement)', - ['nsDS5ReplicaHost', 'nsds5replicaLastUpdateStatus']) -except Exception, e: - plugin.status(critical) - plugin.add_summary("Unable to initialize ldap connection: %s" % (e)) - plugin.exit() - - -# Loop through replication agreements -for rhost in replication: - plugin.add_summary("Replica %s Status: %s" % (rhost[1]['nsDS5ReplicaHost'][0], rhost[1]['nsds5replicaLastUpdateStatus'][0])) - - status = rhost[1]['nsds5replicaLastUpdateStatus'][0] - code = status[:2] - if status.startswith('Error ('): - # IPA >=4.4.0 - code = status[status.find('(')+1:status.find(')')] - else: - # IPA <4.4.0 - code = status[:status.find(' ')] - - if code == '0': - plugin.status(ok) - elif code == '1': - # Busy Replica is not an error, its "unknown" (but its "ok" for now) - plugin.status(ok) - else: - plugin.status(critical) - -if not len(replication): - plugin.add_summary("Warning: No replicas found") - plugin.status(warning) - -plugin.exit() - diff --git a/roles/nagios/client/files/scripts/check_lock b/roles/nagios/client/files/scripts/check_lock deleted file mode 100644 index 1a58e95ef8..0000000000 --- a/roles/nagios/client/files/scripts/check_lock +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/python - -import fcntl -import sys - -try: - f = open('/mnt/koji/.nagios_test', 'r') - f.close() - f = open('/mnt/koji/.nagios_test', 'w') -except IOError: - print "Could not create file" - sys.exit(2) - -fcntl.flock(f, fcntl.LOCK_EX) -f.close() -print "File Locked Successfully" -sys.exit(0) diff --git a/roles/nagios/client/files/scripts/check_lock_file_age b/roles/nagios/client/files/scripts/check_lock_file_age deleted file mode 100755 index f5abaa9e11..0000000000 --- a/roles/nagios/client/files/scripts/check_lock_file_age +++ /dev/null @@ -1,123 +0,0 @@ -#! /usr/bin/perl -w - -# check_lock_file_age.pl Copyright (C) 2010 Ricky Elrod -# -# Fork of check_file_age.pl -# -# Checks a lock file's size and modification time to make sure it's not empty -# and that it's sufficiently recent. -# -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty -# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# you should have received a copy of the GNU General Public License -# along with this program (or with Nagios); if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA - -use strict; -use English; -use Getopt::Long; -use File::stat; -use vars qw($PROGNAME); -use lib "/usr/lib64/nagios/plugins"; -use utils qw (%ERRORS &print_revision &support); - -sub print_help (); -sub print_usage (); - -my ($opt_c, $opt_f, $opt_w, $opt_h, $opt_V); -my ($result, $message, $age, $size, $st); - -$PROGNAME="check_lock_file_age"; - -$opt_w = 1; -$opt_c = 5; -$opt_f = ""; - -Getopt::Long::Configure('bundling'); -GetOptions( - "V" => \$opt_V, "version" => \$opt_V, - "h" => \$opt_h, "help" => \$opt_h, - "f=s" => \$opt_f, "file" => \$opt_f, - "w=f" => \$opt_w, "warning-age=f" => \$opt_w, - "c=f" => \$opt_c, "critical-age=f" => \$opt_c); - -if ($opt_V) { - print_revision($PROGNAME, '1.4.14'); - exit $ERRORS{'OK'}; -} - -if ($opt_h) { - print_help(); - exit $ERRORS{'OK'}; -} - -if (($opt_c and $opt_w) and ($opt_c < $opt_w)) { - print "Warning time must be less than Critical time.\n"; - exit $ERRORS{'UNKNOWN'}; -} - -$opt_f = shift unless ($opt_f); - -if (! $opt_f) { - print "LOCK_FILE_AGE UNKNOWN: No file specified\n"; - exit $ERRORS{'UNKNOWN'}; -} - -# Check that file exists (can be directory or link) -unless (-e $opt_f) { - print "LOCK_FILE_AGE OK: File not found (Lock file removed) - $opt_f\n"; - exit $ERRORS{'OK'}; -} - -$st = File::stat::stat($opt_f); -$age = time - $st->mtime; - -$result = 'OK'; - -# Convert minutes to seconds -if($opt_c) { $opt_c *= 60; } -if($opt_w) { $opt_w *= 60; } - -if ($opt_c and $age > $opt_c) { - $result = 'CRITICAL'; -} -elsif ($opt_w and $age > $opt_w) { - $result = 'WARNING'; -} - -# If the age is higher than 2 minutes, convert seconds -> minutes -# If it's higher than a day, use days. -# Just a nicety, to make people not have to do math ;) -if($age > 86400) { $age = int(($age/86400))." days"; } -elsif($age > 120) { $age = int(($age/60))." minutes"; } -else { $age = "$age seconds"; } - -print "LOCK_FILE_AGE $result: $opt_f is $age old.\n"; -exit $ERRORS{$result}; - -sub print_usage () { - print "Usage:\n"; - print " $PROGNAME [-w ] [-c ] -f \n"; - print " $PROGNAME [-h | --help]\n"; - print " $PROGNAME [-V | --version]\n"; -} - -sub print_help () { - print_revision($PROGNAME, '1.4.14'); - print "Copyright (c) 2010 Ricky Elrod\n\n"; - print_usage(); - print "\n"; - print " File must be no more than this many minutes old (default: warn 1m, crit 5m)\n"; - print "\n"; - support(); -} diff --git a/roles/nagios/client/files/scripts/check_memcache_connect b/roles/nagios/client/files/scripts/check_memcache_connect deleted file mode 100644 index 9c9d6e984e..0000000000 --- a/roles/nagios/client/files/scripts/check_memcache_connect +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -# -# 2014-11-19 -# Author: Ralph Bean - -# exit codes -ok=0 -warn=1 -crit=2 -unkn=3 - -# Right now we just check to see if we can even run this command without -# hanging and timing out. In the future, we could parse stdout for more -# fine-grained information. -echo stats | nc 127.0.0.1 11211 > /dev/null -status=$? - -if [ $status -ne 0 ]; then - echo "CRIT: stats command got status code $status" - exit $crit -else - echo "OK: stats command got status code $status" - exit $ok -fi diff --git a/roles/nagios/client/files/scripts/check_osbs_api.py b/roles/nagios/client/files/scripts/check_osbs_api.py deleted file mode 100755 index b836f007dd..0000000000 --- a/roles/nagios/client/files/scripts/check_osbs_api.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/python - -import requests -import sys - -r = requests.get("https://localhost:8443/", verify=False) - -if 'paths' in r.json().keys(): - print "OK: OSBS API endpoint is responding with path data" - sys.exit(0) -else: - print "CRITICAL: OSBS API not responding properly" - sys.exit(2) - diff --git a/roles/nagios/client/files/scripts/check_osbs_builds.py b/roles/nagios/client/files/scripts/check_osbs_builds.py deleted file mode 100755 index ef0a4700a2..0000000000 --- a/roles/nagios/client/files/scripts/check_osbs_builds.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/python - -import subprocess -import sys - -sp = subprocess.Popen( - ["osbs", "list-builds"], - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - stdin=subprocess.PIPE -) -sp_out, sp_err = sp.communicate() -sp_err = sp_err.split('\n') - -if 'not attached to terminal' in sp_err[0]: - sp_err = sp_err[1:] - -if sp_err[0].split()[0] == 'BUILD': - print "OK: OSBS is responsive to 'osbs list-builds'" - sys.exit(0) -else: - print "CRITICAL: OSBS UNRESPONSIVE" - sys.exit(2) diff --git a/roles/nagios/client/files/scripts/check_postfix_queue b/roles/nagios/client/files/scripts/check_postfix_queue deleted file mode 100644 index 44ab4445f9..0000000000 --- a/roles/nagios/client/files/scripts/check_postfix_queue +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash -# -# 19-07-2010 -# Author: Cherwin Nooitmeer -# - -# exit codes -e_ok=0 -e_warning=1 -e_critical=2 -e_unknown=3 - -# regular expression that matches queue IDs (e.g. D71EF7AC80F8) -queue_id='^[A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9][A-F0-9]' - -usage="Invalid command line usage" - -if [ -z $1 ]; then - echo $usage - exit $e_unknown -fi - -while getopts ":w:c:" options -do - case $options in - w ) warning=$OPTARG ;; - c ) critical=$OPTARG ;; - * ) echo $usage - exit $e_unknown ;; - esac -done - -# determine queue size -qsize=$(mailq | egrep -c $queue_id) -if [ -z $qsize ] -then - exit $e_unknown -fi - -if [ $qsize -ge $critical ]; then - retval=$e_critical -elif [ $qsize -ge $warning ]; then - retval=$e_warning -elif [ $qsize -lt $warning ]; then - retval=$e_ok -fi - -echo "$qsize mail(s) in queue | mail_queue=$qsize" -exit $retval diff --git a/roles/nagios/client/files/scripts/check_rabbitmq_size b/roles/nagios/client/files/scripts/check_rabbitmq_size deleted file mode 100644 index ff6154aea7..0000000000 --- a/roles/nagios/client/files/scripts/check_rabbitmq_size +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/python -import sys -import requests - -url = 'http://localhost:15672/api/queues/%%2f/%s' % (sys.argv[1]) - -r = requests.get(url, auth=('guest', 'guest')).json() -consumers = r['consumers'] -messages = r['messages'] - -msg = 'Messages in queue: %i (%i consumers)' % (messages, consumers) - -if consumers < 1: - print 'CRITICAL: No consumers: %s' % msg - sys.exit(2) - -if messages > sys.argv[2]: - print 'CRITICAL: %s' % msg - sys.exit(2) - -if messages > sys.argv[3]: - print 'WARNING: %s' % msg - sys.exit(1) - -print 'OK: %s' % msg -sys.exit(0) diff --git a/roles/nagios/client/files/scripts/check_raid.py b/roles/nagios/client/files/scripts/check_raid.py deleted file mode 100644 index 48cddd93d4..0000000000 --- a/roles/nagios/client/files/scripts/check_raid.py +++ /dev/null @@ -1,45 +0,0 @@ -#!/usr/bin/env python -# -# very simple python script to parse out /proc/mdstat -# and give results for nagios to monitor -# - -import sys -import string - -devices = [] - -try: - mdstat = string.split(open('/proc/mdstat').read(), '\n') -except IOError: - # seems we have no software raid on this machines - sys.exit(0) - -error = "" -i = 0 -for line in mdstat: - if line[0:2] == 'md': - device = string.split(line)[0] - devices.append(device) - status = string.split(mdstat[i+1])[3] - if string.count(status, "_"): - # see if we can figure out what's going on - err = string.split(mdstat[i+2]) - msg = "device=%s status=%s" % (device, status) - if len(err) > 0: - msg = msg + " rebuild=%s" % err[0] - - if not error: - error = msg - else: - error = error + ", " + msg - i = i + 1 - -if not error: - print "DEVICES %s OK" % " ".join(devices) - sys.exit(0) - -else: - print error - sys.exit(2) - diff --git a/roles/nagios/client/files/scripts/check_readonly_fs b/roles/nagios/client/files/scripts/check_readonly_fs deleted file mode 100755 index cd2b1973a7..0000000000 --- a/roles/nagios/client/files/scripts/check_readonly_fs +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/bash - -# check_readonlyfs: Check for readonly filesystems -# Copyright (C) 2010 Davide Madrisan - -PROGNAME=`/bin/basename $0` -PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'` -REVISION=`echo '$Revision: 1 $' | sed -e 's/[^0-9.]//g'` - -. $PROGPATH/utils.sh - -print_usage() { - echo "Usage: $PROGNAME --no-network-fs" - echo "Usage: $PROGNAME --help" - echo "Usage: $PROGNAME --version" -} - -print_help() { - print_revision $PROGNAME $REVISION - echo "" - print_usage - echo "" - echo "readonly filesystem checker plugin for Nagios" - echo "" - support -} - -NETFS=1 - -# Grab the command line arguments - -exitstatus=$STATE_WARNING #default - -while test -n "$1"; do - case "$1" in - --help|-h) - print_help - exit $STATE_OK - ;; - --version|-V) - print_revision $PROGNAME $REVISION - exit $STATE_OK - ;; - --no-network-fs|-n) - NETFS="0" - ;; - *) - echo "Unknown argument: $1" - print_usage - exit $STATE_UNKNOWN - ;; - esac - shift -done - -[ -r /proc/mounts ] || { echo "cannot read /proc/mounts!"; exit $STATE_UNKNOWN; } - -nerr=0 -IFS_SAVE="$IFS" - -rofs_list="" -while read dev mp fs mopt ignore; do - [ "$dev" = none ] && continue - case $fs in binfmt_misc|devpts|iso9660|proc|selinuxfs|rpc_pipefs|sysfs|tmpfs|usbfs) - continue ;; - esac - case $fs in autofs|nfs|nfs4|smbfs) - # skip the network filesystems - [ "$NETFS" = 0 ] && continue ;; - esac - - IFS=","; set -- $mopt; IFS="$IFS_SAVE" - while :; do - case "$1" in - ro) rofs_list="$rofs_list $mp"; nerr=$(( $nerr + 1 )) ;; - "") shift; break ;; - esac - shift - done -done < <(LC_ALL=C /bin/cat /proc/mounts 2>/dev/null) - -[ $nerr -eq 0 ] && { echo OK; exit $STATE_OK; } || echo "$rofs_list: read only fs" - -exit $exitstatus diff --git a/roles/nagios/client/files/scripts/check_supybot_plugin b/roles/nagios/client/files/scripts/check_supybot_plugin deleted file mode 100755 index a66ead2e7e..0000000000 --- a/roles/nagios/client/files/scripts/check_supybot_plugin +++ /dev/null @@ -1,108 +0,0 @@ -#!/usr/bin/env python -""" check_supybot_plugin -- ensure that a plugin is loaded by supybot. - -Run like: - - check_supybot_plugin --target fedmsg - check_supybot_plugin --target koji --debug - -""" - -import argparse -import sys -import socket -import string -import uuid - - -def process_args(): - parser = argparse.ArgumentParser() - parser.add_argument( - '-t', '--target', default=None, dest='target', - help="Required. The plugin we're looking for." - ) - parser.add_argument( - '-n', '--nick', default=None, dest='nick', - help="NICK to use when connecting to freenode.", - ) - parser.add_argument( - '-d', '--debug', default=False, action='store_true', - help='Print out debug information.', dest='debug', - ) - parser.add_argument( - '-H', '--host', default='irc.freenode.net', - help='Host to connect to.', dest='host', - ) - parser.add_argument( - '-p', '--port', default=6667, type=int, - help='Host to connect to.', dest='port', - ) - return parser.parse_args() - -args = process_args() - -# Use a random nick so people can't mess with us -if not args.nick: - args.nick = 'nrpe-' + str(uuid.uuid4()).split('-')[0] - -name = "NRPE Bot" -readbuffer = "" - -if not args.target: - print "UNKNOWN: No 'target' specified." - sys.exit(3) - -args.target = args.target.lower() - -if args.debug: - print "connecting to %s/%i" % (args.host, args.port) - -try: - s = socket.socket() - s.connect((args.host, args.port)) - - if args.debug: - print "as %s/%s (%s)" % (args.nick, args.nick, name) - - s.send("nick %s\r\n" % args.nick) - s.send("USER %s %s bla :%s\r\n" % (args.nick, args.host, name)) - - while 1: - readbuffer = readbuffer+s.recv(1024) - temp = string.split(readbuffer, "\n") - readbuffer = temp.pop() - - for line in temp: - line = string.rstrip(line) - - if args.debug: - print " * ", line - - line = string.split(line) - - if line[1] == 'MODE': - msg = "privmsg zodbot :list\r\n" - if args.debug: - print "sending:" - print " ->", msg - s.send(msg) - - if line[1] == 'PRIVMSG': - if args.debug: - print "Got our response.." - - plugins = map(str.lower, ' '.join(line[3:][1:]).split(', ')) - - if args.target in plugins: - print "OK" - s.send("QUIT") - sys.exit(0) - else: - print "CRITICAL: %r not loaded by supybot" % args.target - s.send("QUIT") - sys.exit(2) -except Exception as e: - print "UNKNOWN: ", str(e) - if args.debug: - raise - sys.exit(3) diff --git a/roles/nagios/client/files/scripts/check_testcloud b/roles/nagios/client/files/scripts/check_testcloud deleted file mode 100644 index eb8c7aab3b..0000000000 --- a/roles/nagios/client/files/scripts/check_testcloud +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -RUNNING_VMS=`testcloud instance list | grep -i 'running' | wc -l` -CRITICAL=20 -WARNING=15 - - -if [ $RUNNING_VMS -gt $CRITICAL ] -then - echo "Testcloud: CRITICAL Number of VMs running: $RUNNING_VMS" - exit 2 -elif [ $RUNNING_VMS -gt $WARNING ] -then - echo "Testcloud: WARNING Number of VMs running: $RUNNING_VMS" - exit 1 -else - echo "Testcloud: OK Number of VMs running: $RUNNING_VMS" - exit 0 -fi diff --git a/roles/nagios/client/files/selinux/fi-nrpe.mod b/roles/nagios/client/files/selinux/fi-nrpe.mod deleted file mode 100644 index f0552460cd..0000000000 Binary files a/roles/nagios/client/files/selinux/fi-nrpe.mod and /dev/null differ diff --git a/roles/nagios/client/files/selinux/fi-nrpe.pp b/roles/nagios/client/files/selinux/fi-nrpe.pp deleted file mode 100644 index 1243b0e73e..0000000000 Binary files a/roles/nagios/client/files/selinux/fi-nrpe.pp and /dev/null differ diff --git a/roles/nagios/client/files/selinux/fi-nrpe.te b/roles/nagios/client/files/selinux/fi-nrpe.te deleted file mode 100644 index 91bcdcc972..0000000000 --- a/roles/nagios/client/files/selinux/fi-nrpe.te +++ /dev/null @@ -1,11 +0,0 @@ -module fi-nrpe 1.0; - -require { - type nagios_system_plugin_t; - type nrpe_exec_t; - class file getattr; -} - -#============= nagios_system_plugin_t ============== -allow nagios_system_plugin_t nrpe_exec_t:file getattr; - diff --git a/roles/nagios/client/handlers/main.yml b/roles/nagios/client/handlers/main.yml deleted file mode 100644 index 11c84acd9b..0000000000 --- a/roles/nagios/client/handlers/main.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -- name: restart nrpe - service: name=nrpe state=restarted diff --git a/roles/nagios/client/tasks/main.yml b/roles/nagios/client/tasks/main.yml deleted file mode 100644 index e2d1a1412f..0000000000 --- a/roles/nagios/client/tasks/main.yml +++ /dev/null @@ -1,226 +0,0 @@ -# nagios-client/nrpe - ---- -# install pkgs: -- name: install nagios client pkgs - yum: name={{ item }} state=present - with_items: - - nrpe - - nagios-plugins - - nagios-plugins-disk - - nagios-plugins-file_age - - nagios-plugins-users - - nagios-plugins-procs - - nagios-plugins-swap - - nagios-plugins-load - - nagios-plugins-ping - tags: - - packages - - nagios/client - when: ansible_distribution_major_version|int < 22 - -# install pkgs: -- name: install nagios client pkgs - dnf: name={{ item }} state=present - with_items: - - nrpe - - nagios-plugins - - nagios-plugins-disk - - nagios-plugins-file_age - - nagios-plugins-users - - nagios-plugins-procs - - nagios-plugins-swap - - nagios-plugins-load - - nagios-plugins-ping - tags: - - packages - - nagios/client - when: ansible_distribution_major_version|int > 21 - -- name: install local nrpe check scripts that are not packaged - copy: src="scripts/{{ item }}" dest="{{ libdir }}/nagios/plugins/{{ item }}" mode=0755 owner=nagios group=nagios - with_items: - - check_haproxy_conns.py - - check_postfix_queue - - check_raid.py - - check_lock - - check_fcomm_queue - - check_fedmsg_consumer_backlog.py - - check_fedmsg_consumer_exceptions.py - - check_fedmsg_producer_last_ran.py - - check_fedmsg_producers_consumers.py - - check_supybot_plugin - - check_rabbitmq_size - - check_datanommer_timesince.py - - check_memcache_connect - - check_readonly_fs - - check_lock_file_age - - check_testcloud - - check_osbs_builds.py - - check_osbs_api.py - - check_ipa_replication - when: not inventory_hostname.startswith('noc') - tags: - - nagios/client - -# create dirs -# puppet used to make /var/spool/nagios (owned by nagios.nagios) mode 750 -# and /usr/lib/nagios/plugins (owned by root) mode 755 - but we don't know WHY -# then stuff it with plugins from the plugins dir in the nagios module -# then we symlinked that to /usr/lib64/nagios/plugins -# it was a nightmare - don't do that - my ghost will haunt you if you do -# skvidal 2013-05-21 - - -# Three tasks for handling our custom selinux module -- name: ensure a directory exists for our custom selinux module - file: dest=/usr/share/nrpe state=directory - -- name: copy over our custom selinux module - copy: src=selinux/fi-nrpe.pp dest=/usr/share/nrpe/fi-nrpe.pp - register: selinux_module - -- name: install our custom selinux module - command: semodule -i /usr/share/nrpe/fi-nrpe.pp - when: ansible_distribution_major_version|int == 7 and selinux_module|changed - - -# Set up our base config. -- name: /etc/nagios/nrpe.cfg - template: src=nrpe.cfg.j2 dest=/etc/nagios/nrpe.cfg - when: not inventory_hostname.startswith('noc') - notify: - - restart nrpe - tags: - - config - - nagios/client - -# -# The actual items files here end in .j2 (they are templates) -# So when adding or modifying them change the .j2 version in git. -# -- name: install nrpe client configs - template: src={{ item }}.j2 dest=/etc/nrpe.d/{{ item }} - with_items: - - check_raid.cfg - - check_ipa.cfg - - check_readonly_fs.cfg - - check_cron.cfg - - check_disk.cfg - - check_swap.cfg - - check_postfix_queue.cfg - - check_lock.cfg - - check_fedmsg_hub_proc.cfg - - check_fedmsg_irc_proc.cfg - - check_fedmsg_relay_proc.cfg - - check_fedmsg_gateway_proc.cfg - - check_fedmsg_masher_proc.cfg - - check_redis_proc.cfg - - check_autocloud_proc.cfg - - check_fedmsg_consumers.cfg - - check_supybot_fedmsg_plugin.cfg - - check_datanommer_history.cfg - - check_memcache.cfg - - check_lock_file_age.cfg - - check_basset.cfg - - check_fmn.cfg - - check_osbs.cfg - - check_koschei_polling_proc.cfg - - check_koschei_build_resolver_proc.cfg - - check_koschei_repo_resolver_proc.cfg - - check_koschei_scheduler_proc.cfg - - check_koschei_watcher_proc.cfg - - check_testcloud.cfg - notify: - - restart nrpe - tags: - - config - - nagios/client - -# -# The actual items files here end in .j2 (they are templates) -# So when adding or modifying them change the .j2 version in git. -# -- name: install nrpe bugyou fedmsg hubs check config - template: src=check_fedmsg_hub_procs_bugyou.cfg.j2 dest=/etc/nrpe.d/check_fedmsg_hub_procs_bugyou.cfg - when: inventory_hostname.startswith('bugyou01') - notify: - - restart nrpe - tags: - - nagios/client - -# -# The actual items files here end in .j2 (they are templates) -# So when adding or modifying them change the .j2 version in git. -# -- name: install nrpe openvpn check config - template: src=check_openvpn_link.cfg.j2 dest=/etc/nrpe.d/check_openvpn_link.cfg - when: vpn == true - notify: - - restart nrpe - tags: - - nagios/client -# -# The actual items files here end in .j2 (they are templates) -# So when adding or modifying them change the .j2 version in git. -# -- name: install nrpe unbound check config - template: src=check_unbound_proc.cfg.j2 dest=/etc/nrpe.d/check_unbound_proc.cfg - when: inventory_hostname.startswith('unbound') - notify: - - restart nrpe - tags: - - nagios/client -# -# The actual items files here end in .j2 (they are templates) -# So when adding or modifying them change the .j2 version in git. -# -- name: install nrpe merged log check script on log01 - template: src=check_merged_file_age.cfg.j2 dest=/etc/nrpe.d/check_merged_file_age.cfg - when: inventory_hostname.startswith('log0') - notify: - - restart nrpe - tags: - - nagios/client -# -# The actual items files here end in .j2 (they are templates) -# So when adding or modifying them change the .j2 version in git. -# -- name: install nrpe check_mysql config for mariadb servers - template: src=check_mysql.cfg.j2 dest=/etc/nrpe.d/check_mysql.cfg - when: inventory_hostname.startswith('db03') - notify: - - restart nrpe - tags: - - nagios/client - -- name: install nrpe checks for proxies - template: src={{ item }}.j2 dest=/etc/nrpe.d/{{ item }} - with_items: - - check_happroxy_conns.cfg - - check_varnish_proc.cfg - when: inventory_hostname.startswith('proxy') - notify: - - restart nrpe - tags: - - nagios/client - -- name: nrpe service start - service: name=nrpe state=started enabled=true - tags: - - service - - nagios/client - -- name: Check if the fedmsg group exists - shell: /usr/bin/getent group fedmsg | /usr/bin/wc -l | tr -d ' ' - register: fedmsg_exists - check_mode: no - changed_when: "1 != 1" - tags: - - nagios/client - -- name: Add nrpe user to the fedmsg group if it exists - user: name=nrpe groups=fedmsg append=yes - when: fedmsg_exists.stdout == "1" - tags: - - nagios/client diff --git a/roles/nagios/client/templates/check_autocloud_proc.cfg.j2 b/roles/nagios/client/templates/check_autocloud_proc.cfg.j2 deleted file mode 100644 index 0aefef2e62..0000000000 --- a/roles/nagios/client/templates/check_autocloud_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_autocloud_proc]=/usr/lib64/nagios/plugins/check_procs -c 1:1 -C 'python' -a 'autocloud_job.py' -u root diff --git a/roles/nagios/client/templates/check_basset.cfg.j2 b/roles/nagios/client/templates/check_basset.cfg.j2 deleted file mode 100644 index c543d1c6b0..0000000000 --- a/roles/nagios/client/templates/check_basset.cfg.j2 +++ /dev/null @@ -1,4 +0,0 @@ -command[check_mongo_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u mongodb -C mongod -c 1:1 -command[check_rabbitmq_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u rabbitmq -C beam.smp -c 1:1 -command[check_worker_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u basset-worker -C basset-worker -c 1:6 -command[check_basset_queue]={{ libdir }}/nagios/plugins/check_rabbitmq_size check_submission 10 20 diff --git a/roles/nagios/client/templates/check_cron.cfg.j2 b/roles/nagios/client/templates/check_cron.cfg.j2 deleted file mode 100644 index b2030c579b..0000000000 --- a/roles/nagios/client/templates/check_cron.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_cron]={{ libdir }}/nagios/plugins/check_procs -c 1:15 -C 'crond' -u root diff --git a/roles/nagios/client/templates/check_datanommer_history.cfg.j2 b/roles/nagios/client/templates/check_datanommer_history.cfg.j2 deleted file mode 100644 index 2b1c6cbbec..0000000000 --- a/roles/nagios/client/templates/check_datanommer_history.cfg.j2 +++ /dev/null @@ -1,50 +0,0 @@ -# Checks on the datanommer history to make sure we're still receiving messages -# of all types. -# -# The following are fedmsg/datanommer checks to be run on busgateway01. -# They check for the time since the latest message in any particular category. -# The first number is the seconds elapsed until we should raise a warning. -# The second number is the seconds elapsed until we should raise an error. -# For your reference: -# 4 hours -> 14400 -# 1 day -> 86400 -# 3 days -> 259200 -# 1 week -> 604800 -# 3 weeks -> 1814400 -# 1 month -> 2628000 -# 3 months -> 7884000 -command[check_datanommer_buildsys]={{libdir}}/nagios/plugins/check_datanommer_timesince.py buildsys 14400 86400 -command[check_datanommer_git]={{libdir}}/nagios/plugins/check_datanommer_timesince.py git 86400 604800 -command[check_datanommer_bodhi]={{libdir}}/nagios/plugins/check_datanommer_timesince.py bodhi 86400 604800 -command[check_datanommer_wiki]={{libdir}}/nagios/plugins/check_datanommer_timesince.py wiki 259200 1814400 -command[check_datanommer_compose]={{libdir}}/nagios/plugins/check_datanommer_timesince.py compose 259200 1814400 -command[check_datanommer_meetbot]={{libdir}}/nagios/plugins/check_datanommer_timesince.py meetbot 604800 2628000 -command[check_datanommer_fas]={{libdir}}/nagios/plugins/check_datanommer_timesince.py fas 1814400 2628000 -command[check_datanommer_pkgdb]={{libdir}}/nagios/plugins/check_datanommer_timesince.py pkgdb 1814400 2628000 -command[check_datanommer_fedoratagger]={{libdir}}/nagios/plugins/check_datanommer_timesince.py fedoratagger 2628000 7884000 -command[check_datanommer_planet]={{libdir}}/nagios/plugins/check_datanommer_timesince.py planet 2628000 7884000 -command[check_datanommer_copr]={{libdir}}/nagios/plugins/check_datanommer_timesince.py copr 21600 86400 -command[check_datanommer_trac]={{libdir}}/nagios/plugins/check_datanommer_timesince.py trac 86400 259200 -command[check_datanommer_askbot]={{libdir}}/nagios/plugins/check_datanommer_timesince.py askbot 86400 259200 -command[check_datanommer_fedbadges]={{libdir}}/nagios/plugins/check_datanommer_timesince.py fedbadges 86400 259200 -command[check_datanommer_fedocal]={{libdir}}/nagios/plugins/check_datanommer_timesince.py fedocal 7884000 23652000 -command[check_datanommer_ansible]={{libdir}}/nagios/plugins/check_datanommer_timesince.py ansible 432000 604800 -command[check_datanommer_summershum]={{libdir}}/nagios/plugins/check_datanommer_timesince.py summershum 604800 1814400 -command[check_datanommer_jenkins]={{libdir}}/nagios/plugins/check_datanommer_timesince.py jenkins 432000 604800 -command[check_datanommer_github]={{libdir}}/nagios/plugins/check_datanommer_timesince.py github 432000 604800 -command[check_datanommer_kerneltest]={{libdir}}/nagios/plugins/check_datanommer_timesince.py kerneltest 604800 1814400 -command[check_datanommer_fmn]={{libdir}}/nagios/plugins/check_datanommer_timesince.py fmn 604800 1814400 -command[check_datanommer_anitya]={{libdir}}/nagios/plugins/check_datanommer_timesince.py anitya 604800 1814400 -command[check_datanommer_fedimg]={{libdir}}/nagios/plugins/check_datanommer_timesince.py fedimg 259200 604800 -command[check_datanommer_hotness]={{libdir}}/nagios/plugins/check_datanommer_timesince.py hotness 604800 1814400 -command[check_datanommer_faf]={{libdir}}/nagios/plugins/check_datanommer_timesince.py faf 86400 259200 -command[check_datanommer_koschei]={{libdir}}/nagios/plugins/check_datanommer_timesince.py koschei 86400 604800 -command[check_datanommer_autocloud]={{libdir}}/nagios/plugins/check_datanommer_timesince.py autocloud 259200 1814400 -command[check_datanommer_twoweekatomic]=/usr/lib64/nagios/plugins/check_datanommer_timesince.py org.fedoraproject.prod.releng.atomic.twoweek.complete 1296000 1382400 - -# This one is retired since it times out all the time. Too few messages. -#command[check_datanommer_nuancier]={{libdir}}/nagios/plugins/check_datanommer_timesince.py nuancier 23652000 31536000 - -# These are not actually finished and deployed yet -command[check_datanommer_mailman]={{libdir}}/nagios/plugins/check_datanommer_timesince.py mailman 14400 86400 -command[check_datanommer_bugzilla]={{libdir}}/nagios/plugins/check_datanommer_timesince.py bugzilla 86400 259200 diff --git a/roles/nagios/client/templates/check_disk.cfg.j2 b/roles/nagios/client/templates/check_disk.cfg.j2 deleted file mode 100644 index d2b64c5c88..0000000000 --- a/roles/nagios/client/templates/check_disk.cfg.j2 +++ /dev/null @@ -1,7 +0,0 @@ -command[check_disk_/]={{ libdir }}/nagios/plugins/check_disk -w 14% -c 10% -p / -command[check_disk_/boot]={{ libdir }}/nagios/plugins/check_disk -w 15% -c 10% -p /boot -command[check_disk_/srv/cache/lookaside]={{ libdir }}/nagios/plugins/check_disk -w 20% -c 10% -p /srv/cache/lookaside -command[check_disk_/srv]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10% -p /srv -command[check_disk_/srv/buildmaster]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10% -p /srv/buildmaster -command[check_disk_/srv/taskotron]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 10% -p /srv/taskotron -command[check_disk_/var/log]=/usr/lib64/nagios/plugins/check_disk -w 20% -c 15% -p /var/log diff --git a/roles/nagios/client/templates/check_fedmsg_consumers.cfg.j2 b/roles/nagios/client/templates/check_fedmsg_consumers.cfg.j2 deleted file mode 100644 index 5d2f128ce2..0000000000 --- a/roles/nagios/client/templates/check_fedmsg_consumers.cfg.j2 +++ /dev/null @@ -1,66 +0,0 @@ -# Fedmsg checks for consumers and producers -command[check_fedmsg_cp_busgateway_hub]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub Nommer MonitoringProducer -command[check_fedmsg_cp_busgateway_relay]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-relay RelayConsumer MonitoringProducer -command[check_fedmsg_cp_busgateway_gateway]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-gateway GatewayConsumer MonitoringProducer -command[check_fedmsg_cp_anitya_relay]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-relay RelayConsumer MonitoringProducer -command[check_fedmsg_cp_app]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-relay RelayConsumer MonitoringProducer -command[check_fedmsg_cp_value]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-irc IRCBotConsumer MonitoringProducer -command[check_fedmsg_cp_pkgs]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub GenACLsConsumer MonitoringProducer -command[check_fedmsg_cp_summershum]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub SummerShumConsumer MonitoringProducer -command[check_fedmsg_cp_badges_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub FedoraBadgesConsumer MonitoringProducer -command[check_fedmsg_cp_notifs_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub FMNConsumer DigestProducer ConfirmationProducer MonitoringProducer -command[check_fedmsg_cp_bugzilla2fedmsg]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py moksha-hub BugzillaConsumer MonitoringProducer -command[check_fedmsg_cp_fedimg_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub FedimgConsumer MonitoringProducer -command[check_fedmsg_cp_hotness_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub BugzillaTicketFiler MonitoringProducer -command[check_fedmsg_cp_bodhi_backend01_hub]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub Masher MonitoringProducer -command[check_fedmsg_cp_bodhi_backend02_hub]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub UpdatesHandler MonitoringProducer -command[check_fedmsg_cp_autocloud_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub AutoCloudConsumer MonitoringProducer -command[check_fedmsg_cp_packages_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub CacheInvalidator MonitoringProducer -command[check_fedmsg_cp_bugyou_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub BugyouConsumer MonitoringProducer -command[check_fedmsg_cp_pdc_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub PDCUpdater MonitoringProducer -command[check_fedmsg_cp_mbs_backend]={{libdir}}/nagios/plugins/check_fedmsg_producers_consumers.py fedmsg-hub MBSConsumer MBSProducer MonitoringProducer - -command[check_fedmsg_cexceptions_busgateway_hub]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub Nommer 1 10 -command[check_fedmsg_cexceptions_busgateway_relay]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-relay RelayConsumer 1 10 -command[check_fedmsg_cexceptions_busgateway_gateway]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-gateway GatewayConsumer 1 10 -command[check_fedmsg_cexceptions_anitya_relay]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-relay RelayConsumer 1 10 -command[check_fedmsg_cexceptions_app]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-relay RelayConsumer 1 10 -command[check_fedmsg_cexceptions_value]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-irc IRCBotConsumer 1 10 -command[check_fedmsg_cexceptions_pkgs]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub GenACLsConsumer 1 10 -command[check_fedmsg_cexceptions_summershum]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub SummerShumConsumer 1 10 -command[check_fedmsg_cexceptions_badges_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub FedoraBadgesConsumer 1 10 -command[check_fedmsg_cexceptions_notifs_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub FMNConsumer 1 10 -command[check_fedmsg_cexceptions_bugzilla2fedmsg]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py moksha-hub BugzillaConsumer 1 10 -command[check_fedmsg_cexceptions_fedimg_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub FedimgConsumer 1 10 -command[check_fedmsg_cexceptions_hotness_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub BugzillaTicketFiler 1 10 -command[check_fedmsg_cexceptions_bodhi_backend01_hub]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub Masher 1 10 -command[check_fedmsg_cexceptions_bodhi_backend02_hub]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub UpdatesHandler 1 10 -command[check_fedmsg_cexceptions_autocloud_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub AutoCloudConsumer 1 10 -command[check_fedmsg_cexceptions_packages_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub CacheInvalidator 1 10 -command[check_fedmsg_cexceptions_bugyou_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub BugyouConsumer 1 10 -command[check_fedmsg_cexceptions_pdc_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub PDCUpdater 1 10 -command[check_fedmsg_cexceptions_mbs_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_exceptions.py fedmsg-hub MBSConsumer 1 10 - -command[check_fedmsg_cbacklog_busgateway_hub]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub Nommer 500 1000 -command[check_fedmsg_cbacklog_busgateway_relay]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-relay RelayConsumer 10 50 -command[check_fedmsg_cbacklog_busgateway_gateway]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-gateway GatewayConsumer 10 50 -command[check_fedmsg_cbacklog_anitya_relay]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-relay RelayConsumer 10 50 -command[check_fedmsg_cbacklog_app]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-relay RelayConsumer 10 50 -command[check_fedmsg_cbacklog_value]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-irc IRCBotConsumer 10 50 -command[check_fedmsg_cbacklog_pkgs]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub GenACLsConsumer 10 50 -command[check_fedmsg_cbacklog_summershum]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub SummerShumConsumer 100 500 -command[check_fedmsg_cbacklog_badges_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub FedoraBadgesConsumer 7000 10000 -command[check_fedmsg_cbacklog_notifs_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub FMNConsumer 15000 20000 -command[check_fedmsg_cbacklog_bugzilla2fedmsg]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py moksha-hub BugzillaConsumer 10 100 -command[check_fedmsg_cbacklog_fedimg_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub FedimgConsumer 2000 5000 -command[check_fedmsg_cbacklog_hotness_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub BugzillaTicketFiler 1000 5000 -command[check_fedmsg_cbacklog_bodhi_backend01_hub]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub Masher 500 1000 -command[check_fedmsg_cbacklog_bodhi_backend02_hub]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub UpdatesHandler 500 1000 -command[check_fedmsg_cbacklog_autocloud_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub AutoCloudConsumer 100 500 -command[check_fedmsg_cbacklog_packages_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub CacheInvalidator 20000 30000 -command[check_fedmsg_cbacklog_bugyou_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub BugyouConsumer 5000 10000 -command[check_fedmsg_cbacklog_pdc_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub PDCUpdater 10000 20000 -command[check_fedmsg_cbacklog_mbs_backend]={{libdir}}/nagios/plugins/check_fedmsg_consumer_backlog.py fedmsg-hub MBSConsumer 10000 20000 - -command[check_fedmsg_fmn_digest_last_ran]={{libdir}}/nagios/plugins/check_fedmsg_producer_last_ran.py fedmsg-hub DigestProducer 90 600 -command[check_fedmsg_fmn_confirm_last_ran]={{libdir}}/nagios/plugins/check_fedmsg_producer_last_ran.py fedmsg-hub ConfirmationProducer 90 600 diff --git a/roles/nagios/client/templates/check_fedmsg_gateway_proc.cfg.j2 b/roles/nagios/client/templates/check_fedmsg_gateway_proc.cfg.j2 deleted file mode 100644 index d6e9774a85..0000000000 --- a/roles/nagios/client/templates/check_fedmsg_gateway_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_fedmsg_gateway_proc]={{ libdir }}/nagios/plugins/check_procs -c 1:1 -C 'fedmsg-gateway' -u fedmsg diff --git a/roles/nagios/client/templates/check_fedmsg_hub_proc.cfg.j2 b/roles/nagios/client/templates/check_fedmsg_hub_proc.cfg.j2 deleted file mode 100644 index 17ec341c4a..0000000000 --- a/roles/nagios/client/templates/check_fedmsg_hub_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_fedmsg_hub_proc]={{ libdir }}/nagios/plugins/check_procs -c 1:1 -C 'fedmsg-hub' -u fedmsg diff --git a/roles/nagios/client/templates/check_fedmsg_hub_procs_bugyou.cfg.j2 b/roles/nagios/client/templates/check_fedmsg_hub_procs_bugyou.cfg.j2 deleted file mode 100644 index 94678ebb3d..0000000000 --- a/roles/nagios/client/templates/check_fedmsg_hub_procs_bugyou.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_fedmsg_hub_procs_bugyou]={{ libdir }}/nagios/plugins/check_procs -c 3:3 -C 'fedmsg-hub' -u fedmsg diff --git a/roles/nagios/client/templates/check_fedmsg_irc_proc.cfg.j2 b/roles/nagios/client/templates/check_fedmsg_irc_proc.cfg.j2 deleted file mode 100644 index 92090dc62d..0000000000 --- a/roles/nagios/client/templates/check_fedmsg_irc_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_fedmsg_irc_proc]={{ libdir }}/nagios/plugins/check_procs -c 1:1 -C 'fedmsg-irc' -u fedmsg diff --git a/roles/nagios/client/templates/check_fedmsg_masher_proc.cfg.j2 b/roles/nagios/client/templates/check_fedmsg_masher_proc.cfg.j2 deleted file mode 100644 index b6ad466b59..0000000000 --- a/roles/nagios/client/templates/check_fedmsg_masher_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_fedmsg_masher_proc]={{ libdir }}/nagios/plugins/check_procs -c 1:1 -C 'fedmsg-hub' -u apache diff --git a/roles/nagios/client/templates/check_fedmsg_relay_proc.cfg.j2 b/roles/nagios/client/templates/check_fedmsg_relay_proc.cfg.j2 deleted file mode 100644 index c471575715..0000000000 --- a/roles/nagios/client/templates/check_fedmsg_relay_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_fedmsg_relay_proc]={{ libdir }}/nagios/plugins/check_procs -c 1:1 -C 'fedmsg-relay' -u fedmsg diff --git a/roles/nagios/client/templates/check_fmn.cfg.j2 b/roles/nagios/client/templates/check_fmn.cfg.j2 deleted file mode 100644 index 05111bdb2f..0000000000 --- a/roles/nagios/client/templates/check_fmn.cfg.j2 +++ /dev/null @@ -1,2 +0,0 @@ -command[check_fmn_worker_queue]={{ libdir }}/nagios/plugins/check_rabbitmq_size workers 200 1000 -command[check_fmn_backend_queue]={{ libdir }}/nagios/plugins/check_rabbitmq_size backends 100 200 diff --git a/roles/nagios/client/templates/check_happroxy_conns.cfg.j2 b/roles/nagios/client/templates/check_happroxy_conns.cfg.j2 deleted file mode 100644 index 381d2b25a5..0000000000 --- a/roles/nagios/client/templates/check_happroxy_conns.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_haproxy_conns]=/usr/lib64/nagios/plugins/check_haproxy_conns.py diff --git a/roles/nagios/client/templates/check_ipa.cfg.j2 b/roles/nagios/client/templates/check_ipa.cfg.j2 deleted file mode 100644 index 031473879f..0000000000 --- a/roles/nagios/client/templates/check_ipa.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_ipa_replication]={{ libdir }}/nagios/plugins/check_ipa_replication -u ldaps://localhost/ diff --git a/roles/nagios/client/templates/check_koschei_build_resolver_proc.cfg.j2 b/roles/nagios/client/templates/check_koschei_build_resolver_proc.cfg.j2 deleted file mode 100644 index af4470ae5b..0000000000 --- a/roles/nagios/client/templates/check_koschei_build_resolver_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_koschei_build_resolver_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u koschei -C koschei-build-r -c 1:1 diff --git a/roles/nagios/client/templates/check_koschei_polling_proc.cfg.j2 b/roles/nagios/client/templates/check_koschei_polling_proc.cfg.j2 deleted file mode 100644 index d71f83a92c..0000000000 --- a/roles/nagios/client/templates/check_koschei_polling_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_koschei_polling_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u koschei -C koschei-polling -c 1:1 diff --git a/roles/nagios/client/templates/check_koschei_repo_resolver_proc.cfg.j2 b/roles/nagios/client/templates/check_koschei_repo_resolver_proc.cfg.j2 deleted file mode 100644 index 6fec336f9b..0000000000 --- a/roles/nagios/client/templates/check_koschei_repo_resolver_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_koschei_repo_resolver_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u koschei -C koschei-repo-re -c 1:1 diff --git a/roles/nagios/client/templates/check_koschei_scheduler_proc.cfg.j2 b/roles/nagios/client/templates/check_koschei_scheduler_proc.cfg.j2 deleted file mode 100644 index c094915e85..0000000000 --- a/roles/nagios/client/templates/check_koschei_scheduler_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_koschei_scheduler_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u koschei -C koschei-schedul -c 1:1 diff --git a/roles/nagios/client/templates/check_koschei_watcher_proc.cfg.j2 b/roles/nagios/client/templates/check_koschei_watcher_proc.cfg.j2 deleted file mode 100644 index 620ab4b574..0000000000 --- a/roles/nagios/client/templates/check_koschei_watcher_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_koschei_watcher_proc]={{ libdir }}/nagios/plugins/check_procs -s RSD -u koschei -C koschei-watcher -c 1:1 diff --git a/roles/nagios/client/templates/check_lock.cfg.j2 b/roles/nagios/client/templates/check_lock.cfg.j2 deleted file mode 100644 index 70015b7652..0000000000 --- a/roles/nagios/client/templates/check_lock.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_lock]={{ libdir }}/nagios/plugins/check_lock diff --git a/roles/nagios/client/templates/check_lock_file_age.cfg.j2 b/roles/nagios/client/templates/check_lock_file_age.cfg.j2 deleted file mode 100644 index c36459a449..0000000000 --- a/roles/nagios/client/templates/check_lock_file_age.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_lock_file_age]={{ libdir }}/nagios/plugins/check_lock_file_age -w 1 -c 5 -f /var/lock/fedora-ca/lock diff --git a/roles/nagios/client/templates/check_memcache.cfg.j2 b/roles/nagios/client/templates/check_memcache.cfg.j2 deleted file mode 100644 index b0ec100a5d..0000000000 --- a/roles/nagios/client/templates/check_memcache.cfg.j2 +++ /dev/null @@ -1,2 +0,0 @@ -command[check_memcache]=/usr/lib64/nagios/plugins/check_procs -c 1:1 -a '/usr/bin/memcached' -u memcached -command[check_memcache_connect]=/usr/lib64/nagios/plugins/check_memcache_connect diff --git a/roles/nagios/client/templates/check_merged_file_age.cfg.j2 b/roles/nagios/client/templates/check_merged_file_age.cfg.j2 deleted file mode 100644 index 90df1c7b42..0000000000 --- a/roles/nagios/client/templates/check_merged_file_age.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_merged_file_age]=/usr/lib64/nagios/plugins/check_file_age -w 120 -c 300 /var/log/merged/messages.log diff --git a/roles/nagios/client/templates/check_mirrorlist_cache.cfg.j2 b/roles/nagios/client/templates/check_mirrorlist_cache.cfg.j2 deleted file mode 100644 index 94c58be10f..0000000000 --- a/roles/nagios/client/templates/check_mirrorlist_cache.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_mirrorlist_cache]={{ libdir }}/nagios/plugins/check_file_age -w 14400 -c 129600 -f /var/lib/mirrormanager/mirrorlist_cache.pkl diff --git a/roles/nagios/client/templates/check_mysql.cfg.j2 b/roles/nagios/client/templates/check_mysql.cfg.j2 deleted file mode 100644 index 2b825d2a54..0000000000 --- a/roles/nagios/client/templates/check_mysql.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_mysql_backup]={{ libdir }}/nagios/plugins/check_file_age -w 86400 -c 129600 -f /backups/fpo-mediawiki-latest.xz diff --git a/roles/nagios/client/templates/check_openvpn_link.cfg.j2 b/roles/nagios/client/templates/check_openvpn_link.cfg.j2 deleted file mode 100644 index 77d3e660c9..0000000000 --- a/roles/nagios/client/templates/check_openvpn_link.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_openvpn_link]={{ libdir }}/nagios/plugins/check_ping -H 192.168.1.41 -w 375.0,20% -c 500,60% diff --git a/roles/nagios/client/templates/check_osbs.cfg.j2 b/roles/nagios/client/templates/check_osbs.cfg.j2 deleted file mode 100644 index 1b427f3816..0000000000 --- a/roles/nagios/client/templates/check_osbs.cfg.j2 +++ /dev/null @@ -1,2 +0,0 @@ -command[check_osbs_builds]={{ libdir }}/nagios/plugins/check_osbs_builds.py -command[check_osbs_api]={{ libdir }}/nagios/plugins/check_osbs_api.py diff --git a/roles/nagios/client/templates/check_postfix_queue.cfg.j2 b/roles/nagios/client/templates/check_postfix_queue.cfg.j2 deleted file mode 100644 index 40ab59225e..0000000000 --- a/roles/nagios/client/templates/check_postfix_queue.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_postfix_queue]={{ libdir }}/nagios/plugins/check_postfix_queue -w {{ nrpe_check_postfix_queue_warn }} -c {{ nrpe_check_postfix_queue_crit }} diff --git a/roles/nagios/client/templates/check_raid.cfg.j2 b/roles/nagios/client/templates/check_raid.cfg.j2 deleted file mode 100644 index ef47d12297..0000000000 --- a/roles/nagios/client/templates/check_raid.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_raid]={{ libdir }}/nagios/plugins/check_raid.py diff --git a/roles/nagios/client/templates/check_readonly_fs.cfg.j2 b/roles/nagios/client/templates/check_readonly_fs.cfg.j2 deleted file mode 100644 index df896b7dc3..0000000000 --- a/roles/nagios/client/templates/check_readonly_fs.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_readonly_fs]=/usr/lib64/nagios/plugins/check_readonly_fs diff --git a/roles/nagios/client/templates/check_redis_proc.cfg.j2 b/roles/nagios/client/templates/check_redis_proc.cfg.j2 deleted file mode 100644 index 7f05bc5d66..0000000000 --- a/roles/nagios/client/templates/check_redis_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_redis_proc]=/usr/lib64/nagios/plugins/check_procs -c 1:1 -C 'redis-server' -u redis diff --git a/roles/nagios/client/templates/check_supybot_fedmsg_plugin.cfg.j2 b/roles/nagios/client/templates/check_supybot_fedmsg_plugin.cfg.j2 deleted file mode 100644 index 514cf751cc..0000000000 --- a/roles/nagios/client/templates/check_supybot_fedmsg_plugin.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_supybot_fedmsg_plugin]={{libdir}}/nagios/plugins/check_supybot_plugin -t fedmsg diff --git a/roles/nagios/client/templates/check_swap.cfg.j2 b/roles/nagios/client/templates/check_swap.cfg.j2 deleted file mode 100644 index 68695c9c57..0000000000 --- a/roles/nagios/client/templates/check_swap.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_swap]={{ libdir }}/nagios/plugins/check_swap -w 15% -c 10% diff --git a/roles/nagios/client/templates/check_testcloud.cfg.j2 b/roles/nagios/client/templates/check_testcloud.cfg.j2 deleted file mode 100644 index 25a314f2b1..0000000000 --- a/roles/nagios/client/templates/check_testcloud.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_testcloud]={{ libdir }}/nagios/plugins/check_testcloud diff --git a/roles/nagios/client/templates/check_unbound_proc.cfg.j2 b/roles/nagios/client/templates/check_unbound_proc.cfg.j2 deleted file mode 100644 index cbae839cfd..0000000000 --- a/roles/nagios/client/templates/check_unbound_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_unbound_proc]={{ libdir }}/nagios/plugins/check_procs -c 1:1 -C 'unbound' -u unbound diff --git a/roles/nagios/client/templates/check_varnish_proc.cfg.j2 b/roles/nagios/client/templates/check_varnish_proc.cfg.j2 deleted file mode 100644 index 69f6760554..0000000000 --- a/roles/nagios/client/templates/check_varnish_proc.cfg.j2 +++ /dev/null @@ -1 +0,0 @@ -command[check_varnish_proc]=/usr/lib64/nagios/plugins/check_procs -c 1:2 -C 'varnishd' -u nobody diff --git a/roles/nagios/client/templates/nrpe.cfg.j2 b/roles/nagios/client/templates/nrpe.cfg.j2 deleted file mode 100644 index 8ec106f594..0000000000 --- a/roles/nagios/client/templates/nrpe.cfg.j2 +++ /dev/null @@ -1,232 +0,0 @@ -############################################################################# -# Sample NRPE Config File -# Written by: Ethan Galstad (nagios@nagios.org) -# -# Last Modified: 11-23-2007 -# -# NOTES: -# This is a sample configuration file for the NRPE daemon. It needs to be -# located on the remote host that is running the NRPE daemon, not the host -# from which the check_nrpe client is being executed. -############################################################################# - - -# LOG FACILITY -# The syslog facility that should be used for logging purposes. - -log_facility=daemon - - - -# PID FILE -# The name of the file in which the NRPE daemon should write it's process ID -# number. The file is only written if the NRPE daemon is started by the root -# user and is running in standalone mode. - -#pid_file=/var/run/nrpe.pid - - - -# PORT NUMBER -# Port number we should wait for connections on. -# NOTE: This must be a non-priviledged port (i.e. > 1024). -# NOTE: This option is ignored if NRPE is running under either inetd or xinetd - -server_port=5666 - - - -# SERVER ADDRESS -# Address that nrpe should bind to in case there are more than one interface -# and you do not want nrpe to bind on all interfaces. -# NOTE: This option is ignored if NRPE is running under either inetd or xinetd - -#server_address=127.0.0.1 - - - -# NRPE USER -# This determines the effective user that the NRPE daemon should run as. -# You can either supply a username or a UID. -# -# NOTE: This option is ignored if NRPE is running under either inetd or xinetd - -nrpe_user=nrpe - - - -# NRPE GROUP -# This determines the effective group that the NRPE daemon should run as. -# You can either supply a group name or a GID. -# -# NOTE: This option is ignored if NRPE is running under either inetd or xinetd - -nrpe_group=nrpe - - - -# ALLOWED HOST ADDRESSES -# This is an optional comma-delimited list of IP address or hostnames -# that are allowed to talk to the NRPE daemon. Network addresses with a bit mask -# (i.e. 192.168.1.0/24) are also supported. Hostname wildcards are not currently -# supported. -# -# Note: The daemon only does rudimentary checking of the client's IP -# address. I would highly recommend adding entries in your /etc/hosts.allow -# file to allow only the specified host to connect to the port -# you are running this daemon on. -# -# NOTE: This option is ignored if NRPE is running under either inetd or xinetd - - -{% if env == "staging" %} -allowed_hosts=10.5.126.2,10.5.126.41,10.5.126.241,192.168.1.10,192.168.1.20,209.132.181.35,192.168.1.166,209.132.181.102 -{% else %} -allowed_hosts=10.5.126.41,192.168.1.10,192.168.1.20,209.132.181.35,10.5.126.241,192.168.1.166,209.132.181.102 -{% endif %} - - - -# COMMAND ARGUMENT PROCESSING -# This option determines whether or not the NRPE daemon will allow clients -# to specify arguments to commands that are executed. This option only works -# if the daemon was configured with the --enable-command-args configure script -# option. -# -# *** ENABLING THIS OPTION IS A SECURITY RISK! *** -# Read the SECURITY file for information on some of the security implications -# of enabling this variable. -# -# Values: 0=do not allow arguments, 1=allow command arguments - -dont_blame_nrpe=0 - - - -# COMMAND PREFIX -# This option allows you to prefix all commands with a user-defined string. -# A space is automatically added between the specified prefix string and the -# command line from the command definition. -# -# *** THIS EXAMPLE MAY POSE A POTENTIAL SECURITY RISK, SO USE WITH CAUTION! *** -# Usage scenario: -# Execute restricted commmands using sudo. For this to work, you need to add -# the nagios user to your /etc/sudoers. An example entry for alllowing -# execution of the plugins from might be: -# -# nagios ALL=(ALL) NOPASSWD: /usr/lib/nagios/plugins/ -# -# This lets the nagios user run all commands in that directory (and only them) -# without asking for a password. If you do this, make sure you don't give -# random users write access to that directory or its contents! - -# command_prefix=/usr/bin/sudo - - - -# DEBUGGING OPTION -# This option determines whether or not debugging messages are logged to the -# syslog facility. -# Values: 0=debugging off, 1=debugging on - -debug=0 - - - -# COMMAND TIMEOUT -# This specifies the maximum number of seconds that the NRPE daemon will -# allow plugins to finish executing before killing them off. - -command_timeout=100 - - - -# CONNECTION TIMEOUT -# This specifies the maximum number of seconds that the NRPE daemon will -# wait for a connection to be established before exiting. This is sometimes -# seen where a network problem stops the SSL being established even though -# all network sessions are connected. This causes the nrpe daemons to -# accumulate, eating system resources. Do not set this too low. - -connection_timeout=300 - - - -# WEEK RANDOM SEED OPTION -# This directive allows you to use SSL even if your system does not have -# a /dev/random or /dev/urandom (on purpose or because the necessary patches -# were not applied). The random number generator will be seeded from a file -# which is either a file pointed to by the environment valiable $RANDFILE -# or $HOME/.rnd. If neither exists, the pseudo random number generator will -# be initialized and a warning will be issued. -# Values: 0=only seed from /dev/[u]random, 1=also seed from weak randomness - -#allow_weak_random_seed=1 - - - -# INCLUDE CONFIG FILE -# This directive allows you to include definitions from an external config file. - -#include= - - - -# INCLUDE CONFIG DIRECTORY -# This directive allows you to include definitions from config files (with a -# .cfg extension) in one or more directories (with recursion). - -include_dir=/etc/nrpe.d/ - - - -# COMMAND DEFINITIONS -# Command definitions that this daemon will run. Definitions -# are in the following format: -# -# command[]= -# -# When the daemon receives a request to return the results of -# it will execute the command specified by the argument. -# -# Unlike Nagios, the command line cannot contain macros - it must be -# typed exactly as it should be executed. -# -# Note: Any plugins that are used in the command lines must reside -# on the machine that this daemon is running on! The examples below -# assume that you have plugins installed in a /usr/local/nagios/libexec -# directory. Also note that you will have to modify the definitions below -# to match the argument format the plugins expect. Remember, these are -# examples only! - - -# The following examples use hardcoded command arguments... - -command[check_users]={{ libdir }}/nagios/plugins/check_users -w 5 -c 10 -command[check_load]={{ libdir }}/nagios/plugins/check_load -w 15,10,5 -c 30,25,20 -command[check_hda1]={{ libdir }}/nagios/plugins/check_disk -w 20% -c 10% -p /dev/hda1 -{% if inventory_hostname not in groups['zombie-infested'] %} -command[check_zombie_procs]={{ libdir }}/nagios/plugins/check_procs -w 5 -c 10 -s Z -{% else %} -# This host is prone to Zombies and we do not care or want to alert on it so we make the limits very high -command[check_zombie_procs]={{ libdir }}/nagios/plugins/check_procs -w 50000 -c 100000 -s Z -{% endif %} -command[check_total_procs]={{ libdir }}/nagios/plugins/check_procs -w {{ nrpe_procs_warn }} -c {{ nrpe_procs_crit }} - - -# The following examples allow user-supplied arguments and can -# only be used if the NRPE daemon was compiled with support for -# command arguments *AND* the dont_blame_nrpe directive in this -# config file is set to '1'. This poses a potential security risk, so -# make sure you read the SECURITY file before doing this. - -#command[check_users]=/usr/lib64/nagios/plugins/check_users -w $ARG1$ -c $ARG2$ -#command[check_load]=/usr/lib64/nagios/plugins/check_load -w $ARG1$ -c $ARG2$ -#command[check_disk]=/usr/lib64/nagios/plugins/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ -#command[check_procs]=/usr/lib64/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$ - - -# NEVER ADD ANYTHING HERE - ANY ENTRIES TO NRPE SHOULD BE in .cfg files in /etc/nrpe.d/ - -# NEVER NEVER NEVER -# diff --git a/roles/nagios/server/files/check_nagios_notifications.py b/roles/nagios/server/files/check_nagios_notifications.py deleted file mode 100755 index 574df43b16..0000000000 --- a/roles/nagios/server/files/check_nagios_notifications.py +++ /dev/null @@ -1,104 +0,0 @@ -#!/usr/bin/env python -# -# A script to read the Nagios status file and send email for notifications -# off, but have recovered. -# -# Written by Athmane Madjoudj , 2011-11-15 -# based on tummy.com's work , 2010-11-16 -# Released under the GPLv2. - -import re -from smtplib import SMTP -from email.mime.text import MIMEText -from socket import gethostname - -# Settings -debug = 0 -EMAIL_FROM="nagios@fedoraproject.org" -EMAIL_TO="sysadmin-noc-members@fedoraproject.org" -#EMAIL_TO="athmane@fedoraproject.org" -nagios_status_file = '/var/spool/nagios/status.dat' - -class NagiosStatus: - def __init__(self, filename): - self.filename = filename - self.hosts = {} - self.load_status_file() - - def load_status_file(self): - fp = open(self.filename, 'r') - while True: - line = fp.readline() - if not line: break - - m = re.match(r'^hoststatus\s+{\s*$', line) - if m: - if debug >= 2: print 'START OF HOST' - data = { 'services' : [] } - while True: - line = fp.readline() - if not line: break - if debug >= 2: print 'host: %s' % line.rstrip() - m2 = re.match(r'^\s+([^=]+)=(\S.*)*$', line.rstrip()) - if not m2: break - data[m2.group(1)] = m2.group(2) - self.hosts[data['host_name']] = data - if debug >= 2: print 'END OF HOST' - - m = re.match(r'^servicestatus\s+{\s*$', line) - if m: - if debug >= 2: print 'START OF SERVICE' - data = {} - while True: - line = fp.readline() - if not line: break - if debug >= 2: print 'service: %s' % line.rstrip() - m2 = re.match(r'^\s+([^=]+)=(.*)$', line.rstrip()) - if not m2: break - data[m2.group(1)] = m2.group(2) - self.hosts[data['host_name']]['services'].append(data) - if debug >= 2: print 'END OF SERVICE' - -def main(): - status = NagiosStatus(nagios_status_file) - output = "" - for host in sorted(status.hosts.keys()): - host = status.hosts[host] - if host.get('notifications_enabled', None) == None: - output+= 'Host %s has no notifications_enabled line \n' % host['host_name'] - continue - - # are there any hard states that aren't 0 or 1? - hard_states = [ x for x in - [ int(x['last_hard_state']) for x in host['services'] ] - if not x in [0,1] ] - need_newline = False - if host['notifications_enabled'] == '0' and not hard_states: - output += ('Host %s has notifications disabled and all services ok \n' - % host['host_name']) - need_newline = True - - for service in host['services']: - if debug: print '%s@%s' % ( service['check_command'], host['host_name'] ) - if debug: print ' notifications_enabled: %(notifications_enabled)s last_hard_state: %(last_hard_state)s' % service - if (int(service['notifications_enabled']) == 0 - and int(service['last_hard_state']) in [0,1]): - output+= (('Service %(check_command)s@%(host_name)s\n' - ' has notifications disabled, but is ok\n') % service) - need_newline = True - - if need_newline: output+="\n\n" - - if output.strip() != '': - msg_body = "List of notifications off for recovered hosts/services: \n\n"+output - msg = MIMEText(msg_body) - msg['Subject']="Notifications status on %s" % gethostname() - msg['From']=EMAIL_FROM - msg['To']=EMAIL_TO - smtp_conn = SMTP() - smtp_conn.connect('localhost') - smtp_conn.sendmail(EMAIL_FROM, EMAIL_TO, msg.as_string()) - smtp_conn.quit() - -if __name__ == '__main__': - main() diff --git a/roles/nagios/server/files/irc-colorize.py b/roles/nagios/server/files/irc-colorize.py deleted file mode 100755 index d62d3658a6..0000000000 --- a/roles/nagios/server/files/irc-colorize.py +++ /dev/null @@ -1,59 +0,0 @@ -#!/usr/bin/env python -""" Reads a string from stdin and prints it to stdout with irc colors - -:license: LGPLv2+ -:author: Ralph Bean -""" - -import sys - -mirc_colors = { - "white": 0, - "black": 1, - "blue": 2, - "green": 3, - "red": 4, - "brown": 5, - "purple": 6, - "orange": 7, - "yellow": 8, - "light green": 9, - "teal": 10, - "light cyan": 11, - "light blue": 12, - "pink": 13, - "grey": 14, - "light grey": 15, -} - -mapping = { - 'RECOVERY': 'green', - 'OK': 'green', - 'ACKNOWLEDGEMENT': 'yellow', - 'UNKNOWN': 'purple', - 'WARNING': 'teal', - # 'red' probably makes the most sense here, but it behaved oddly - 'PROBLEM': 'brown', - 'CRITICAL': 'brown', -} - - -def markup(string, color): - return "\x02\x03%i%s\x03\x02" % (mirc_colors[color], string) - - -def colorize(word): - suffix = '' - if word.endswith(':'): - word, suffix = word[:-1], word[-1] - - if word in mapping: - word = markup(word, mapping[word]) - - return word + suffix - - -if __name__ == '__main__': - lines = sys.stdin.readlines() - for line in lines: - print " ".join([colorize(word) for word in line.strip().split()]) diff --git a/roles/nagios/server/files/nagios-external/cgi.cfg b/roles/nagios/server/files/nagios-external/cgi.cfg deleted file mode 100644 index b99f20da32..0000000000 --- a/roles/nagios/server/files/nagios-external/cgi.cfg +++ /dev/null @@ -1,279 +0,0 @@ -################################################################# -# -# CGI.CFG - Sample CGI Configuration File for Nagios -# -# Last Modified: 05-05-2005 -# -################################################################# - - -# MAIN CONFIGURATION FILE -# This tells the CGIs where to find your main configuration file. -# The CGIs will read the main and host config files for any other -# data they might need. - -main_config_file=/etc/nagios/nagios.cfg - - - -# PHYSICAL HTML PATH -# This is the path where the HTML files for Nagios reside. This -# value is used to locate the logo images needed by the statusmap -# and statuswrl CGIs. - -physical_html_path=/usr/share/nagios/share - - - -# URL HTML PATH -# This is the path portion of the URL that corresponds to the -# physical location of the Nagios HTML files (as defined above). -# This value is used by the CGIs to locate the online documentation -# and graphics. If you access the Nagios pages with an URL like -# http://www.myhost.com/nagios, this value should be '/nagios' -# (without the quotes). - -url_html_path=/nagios-external - - - -# CONTEXT-SENSITIVE HELP -# This option determines whether or not a context-sensitive -# help icon will be displayed for most of the CGIs. -# Values: 0 = disables context-sensitive help -# 1 = enables context-sensitive help - -show_context_help=0 - - - -# NAGIOS PROCESS CHECK COMMAND -# This is the full path and filename of the program used to check -# the status of the Nagios process. It is used only by the CGIs -# and is completely optional. However, if you don't use it, you'll -# see warning messages in the CGIs about the Nagios process -# not running and you won't be able to execute any commands from -# the web interface. The program should follow the same rules -# as plugins; the return codes are the same as for the plugins, -# it should have timeout protection, it should output something -# to STDIO, etc. -# -# Note: The command line for the check_nagios plugin below may -# have to be tweaked a bit, as different versions of the plugin -# use different command line arguments/syntaxes. - -#nagios_check_command=/usr/lib/nagios/plugins/check_nagios /var/log/nagios/status.dat 5 '/usr/sbin/nagios' - - - -# AUTHENTICATION USAGE -# This option controls whether or not the CGIs will use any -# authentication when displaying host and service information, as -# well as committing commands to Nagios for processing. -# -# Read the HTML documentation to learn how the authorization works! -# -# NOTE: It is a really *bad* idea to disable authorization, unless -# you plan on removing the command CGI (cmd.cgi)! Failure to do -# so will leave you wide open to kiddies messing with Nagios and -# possibly hitting you with a denial of service attack by filling up -# your drive by continuously writing to your command file! -# -# Setting this value to 0 will cause the CGIs to *not* use -# authentication (bad idea), while any other value will make them -# use the authentication functions (the default). - -use_authentication=1 - - - -# DEFAULT USER -# Setting this variable will define a default user name that can -# access pages without authentication. This allows people within a -# secure domain (i.e., behind a firewall) to see the current status -# without authenticating. You may want to use this to avoid basic -# authentication if you are not using a sercure server since basic -# authentication transmits passwords in the clear. -# -# Important: Do not define a default username unless you are -# running a secure web server and are sure that everyone who has -# access to the CGIs has been authenticated in some manner! If you -# define this variable, anyone who has not authenticated to the web -# server will inherit all rights you assign to this user! - -#default_user_name=guest - - - -# SYSTEM/PROCESS INFORMATION ACCESS -# This option is a comma-delimited list of all usernames that -# have access to viewing the Nagios process information as -# provided by the Extended Information CGI (extinfo.cgi). By -# default, *no one* has access to this unless you choose to -# not use authorization. You may use an asterisk (*) to -# authorize any user who has authenticated to the web server. - -#authorized_for_system_information=nagiosadmin,theboss,jdoe -authorized_for_system_information=* - - - -# CONFIGURATION INFORMATION ACCESS -# This option is a comma-delimited list of all usernames that -# can view ALL configuration information (hosts, commands, etc). -# By default, users can only view configuration information -# for the hosts and services they are contacts for. You may use -# an asterisk (*) to authorize any user who has authenticated -# to the web server. - -#authorized_for_configuration_information=nagiosadmin,jdoe -authorized_for_configuration_information=* - - -# SYSTEM/PROCESS COMMAND ACCESS -# This option is a comma-delimited list of all usernames that -# can issue shutdown and restart commands to Nagios via the -# command CGI (cmd.cgi). Users in this list can also change -# the program mode to active or standby. By default, *no one* -# has access to this unless you choose to not use authorization. -# You may use an asterisk (*) to authorize any user who has -# authenticated to the web server. - -#authorized_for_system_commands=nagiosadmin -authorized_for_system_commands=athmane,ausil,averi,badone,codeblock,hvivani,ianweller,jspaleta,jstanley,kevin,lbazan,lmacken,maxamillio,mmahut,mmcgrath,nb,pfrields,puiterwijk,rafaelgomes,ralph,sijis,smooge,susmit,tibbs,tmz,wsterling,mdomsch,notting,ricky,toshio,spot,mahrud,karsten,parasense,pingou,tflink,mizdebsk,msimacek - - - -# GLOBAL HOST/SERVICE VIEW ACCESS -# These two options are comma-delimited lists of all usernames that -# can view information for all hosts and services that are being -# monitored. By default, users can only view information -# for hosts or services that they are contacts for (unless you -# you choose to not use authorization). You may use an asterisk (*) -# to authorize any user who has authenticated to the web server. - - -authorized_for_all_services=* -authorized_for_all_hosts=* - - -# GLOBAL HOST/SERVICE COMMAND ACCESS -# These two options are comma-delimited lists of all usernames that -# can issue host or service related commands via the command -# CGI (cmd.cgi) for all hosts and services that are being monitored. -# By default, users can only issue commands for hosts or services -# that they are contacts for (unless you you choose to not use -# authorization). You may use an asterisk (*) to authorize any -# user who has authenticated to the web server. - -#authorized_for_all_service_commands=nagiosadmin -#authorized_for_all_host_commands=nagiosadmin -authorized_for_all_service_commands=athmane,ausil,averi,badone,codeblock,dwa,hvivani,ianweller,jspaleta,jstanley,kevin,lbazan,lmacken,maxamillio,mmahut,mmcgrath,nb,pfrields,puiterwijk,rafaelgomes,ralph,sijis,smooge,susmit,tibbs,tmz,wsterling,mdomsch,notting,ricky,toshio,spot,mahrud,dwa,karsten,pingou,tflink,mizdebsk,msimacek - -authorized_for_all_host_commands=athmane,ausil,averi,badone,codeblock,dwa,hvivani,ianweller,jspaleta,jstanley,kevin,lbazan,lmacken,maxamillio,mmahut,mmcgrath,nb,pfrields,puiterwijk,rafaelgomes,ralph,sijis,smooge,susmit,tibbs,tmz,wsterling,mdomsch,notting,ricky,toshio,spot,mahrud,dwa,karsten,pingou,tflink,mizdebsk,msimacek - - - - -# STATUSMAP BACKGROUND IMAGE -# This option allows you to specify an image to be used as a -# background in the statusmap CGI. It is assumed that the image -# resides in the HTML images path (i.e. /usr/local/nagios/share/images). -# This path is automatically determined by appending "/images" -# to the path specified by the 'physical_html_path' directive. -# Note: The image file may be in GIF, PNG, JPEG, or GD2 format. -# However, I recommend that you convert your image to GD2 format -# (uncompressed), as this will cause less CPU load when the CGI -# generates the image. - -#statusmap_background_image=smbackground.gd2 - - - -# DEFAULT STATUSMAP LAYOUT METHOD -# This option allows you to specify the default layout method -# the statusmap CGI should use for drawing hosts. If you do -# not use this option, the default is to use user-defined -# coordinates. Valid options are as follows: -# 0 = User-defined coordinates -# 1 = Depth layers -# 2 = Collapsed tree -# 3 = Balanced tree -# 4 = Circular -# 5 = Circular (Marked Up) - -default_statusmap_layout=5 - - - -# DEFAULT STATUSWRL LAYOUT METHOD -# This option allows you to specify the default layout method -# the statuswrl (VRML) CGI should use for drawing hosts. If you -# do not use this option, the default is to use user-defined -# coordinates. Valid options are as follows: -# 0 = User-defined coordinates -# 2 = Collapsed tree -# 3 = Balanced tree -# 4 = Circular - -default_statuswrl_layout=4 - - - -# STATUSWRL INCLUDE -# This option allows you to include your own objects in the -# generated VRML world. It is assumed that the file -# resides in the HTML path (i.e. /usr/local/nagios/share). - -#statuswrl_include=myworld.wrl - - - -# PING SYNTAX -# This option determines what syntax should be used when -# attempting to ping a host from the WAP interface (using -# the statuswml CGI. You must include the full path to -# the ping binary, along with all required options. The -# $HOSTADDRESS$ macro is substituted with the address of -# the host before the command is executed. -# Please note that the syntax for the ping binary is -# notorious for being different on virtually ever *NIX -# OS and distribution, so you may have to tweak this to -# work on your system. - -ping_syntax=/bin/ping -n -U -c 5 $HOSTADDRESS$ - - - -# REFRESH RATE -# This option allows you to specify the refresh rate in seconds -# of various CGIs (status, statusmap, extinfo, and outages). - -refresh_rate=90 - - - -# SOUND OPTIONS -# These options allow you to specify an optional audio file -# that should be played in your browser window when there are -# problems on the network. The audio files are used only in -# the status CGI. Only the sound for the most critical problem -# will be played. Order of importance (higher to lower) is as -# follows: unreachable hosts, down hosts, critical services, -# warning services, and unknown services. If there are no -# visible problems, the sound file optionally specified by -# 'normal_sound' variable will be played. -# -# -# = -# -# Note: All audio files must be placed in the /media subdirectory -# under the HTML path (i.e. /usr/local/nagios/share/media/). - -#host_unreachable_sound=hostdown.wav -#host_down_sound=hostdown.wav -#service_critical_sound=critical.wav -#service_warning_sound=warning.wav -#service_unknown_sound=warning.wav -#normal_sound=noproblem.wav -base_url=/nagios-external diff --git a/roles/nagios/server/files/nagios-external/contactgroups/bodhi.cfg b/roles/nagios/server/files/nagios-external/contactgroups/bodhi.cfg deleted file mode 100644 index d76b364ac9..0000000000 --- a/roles/nagios/server/files/nagios-external/contactgroups/bodhi.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup { - contactgroup_name bodhi - alias Bodhi Notifications - members lmacken -} diff --git a/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-email.cfg b/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-email.cfg deleted file mode 100644 index 99207656fe..0000000000 --- a/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-email.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup{ - contactgroup_name fedora-sysadmin-email - alias Fedora Sysadmin Email Contacts - members mmcgrath,ausil,admin,nigelj,ricky,jcollie,smooge,nb,rigeld2,codeblock,kevin,hvivani,puiterwijk - } diff --git a/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-ircbot.cfg b/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-ircbot.cfg deleted file mode 100644 index 8c13d17af9..0000000000 --- a/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-ircbot.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup{ - contactgroup_name fedora-sysadmin-ircbot - alias Fedora Sysadmin irc Contacts - members ircbot - } diff --git a/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-pager.cfg b/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-pager.cfg deleted file mode 100644 index 681a37ef9a..0000000000 --- a/roles/nagios/server/files/nagios-external/contactgroups/fedora-sysadmin-pager.cfg +++ /dev/null @@ -1,10 +0,0 @@ -define contactgroup{ - contactgroup_name fedora-sysadmin-pager - alias Fedora Sysadmin Pager Contacts - members mmcgrathp,rickyp,smoogep,kevinp,puiterwijkp -} -define contactgroup{ - contactgroup_name fedora-sysadmin-emergency - alias Fedora Sysadmin Pager Contacts - members mmcgrath-emergency,ricky-emergency,smooge-emergency,kevin-emergency,puiterwijk-emergency -} diff --git a/roles/nagios/server/files/nagios-external/contactgroups/null.cfg b/roles/nagios/server/files/nagios-external/contactgroups/null.cfg deleted file mode 100644 index e9c2067b77..0000000000 --- a/roles/nagios/server/files/nagios-external/contactgroups/null.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup{ - contactgroup_name null - alias null - members null -} diff --git a/roles/nagios/server/files/nagios-external/contacts/admin.cfg b/roles/nagios/server/files/nagios-external/contacts/admin.cfg deleted file mode 100644 index fabbb5e3f0..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/admin.cfg +++ /dev/null @@ -1,13 +0,0 @@ -define contact{ - contact_name admin - alias Fedora Sysadmins - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email sysadmin-members@fedoraproject.org - } - - diff --git a/roles/nagios/server/files/nagios-external/contacts/ausil.cfg b/roles/nagios/server/files/nagios-external/contacts/ausil.cfg deleted file mode 100644 index f8f5e6c8a9..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/ausil.cfg +++ /dev/null @@ -1,16 +0,0 @@ -define contact{ - contact_name ausil - alias Dennis Gilmore - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - #service_notification_commands notify-by-epager - #host_notification_commands host-notify-by-epager - email ausil@fedoraproject.org - #pager 3098682442@tmomail.net - #email 3098682442@tmomail.net -} - diff --git a/roles/nagios/server/files/nagios-external/contacts/codeblock.cfg b/roles/nagios/server/files/nagios-external/contacts/codeblock.cfg deleted file mode 100644 index 3e6b003f7c..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/codeblock.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name codeblock - alias Ricky Elrod - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email codeblock@elrod.me -} diff --git a/roles/nagios/server/files/nagios-external/contacts/hvivani.cfg b/roles/nagios/server/files/nagios-external/contacts/hvivani.cfg deleted file mode 100644 index 2686f59109..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/hvivani.cfg +++ /dev/null @@ -1,12 +0,0 @@ -define contact{ - contact_name hvivani - alias Hernan Vivani - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email hernan@vivani.com.ar -} - diff --git a/roles/nagios/server/files/nagios-external/contacts/ircbot.cfg b/roles/nagios/server/files/nagios-external/contacts/ircbot.cfg deleted file mode 100644 index 9f3d4fee2e..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/ircbot.cfg +++ /dev/null @@ -1,10 +0,0 @@ -define contact{ - contact_name ircbot - alias ZOD - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-ircbot - host_notification_commands host-notify-by-ircbot -} diff --git a/roles/nagios/server/files/nagios-external/contacts/jcollie.cfg b/roles/nagios/server/files/nagios-external/contacts/jcollie.cfg deleted file mode 100644 index 2fce9d252f..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/jcollie.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name jcollie - alias Jeffrey Ollie - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email jeff@ocjtech.us -} diff --git a/roles/nagios/server/files/nagios-external/contacts/jmtaylor.cfg b/roles/nagios/server/files/nagios-external/contacts/jmtaylor.cfg deleted file mode 100644 index 7915a565dc..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/jmtaylor.cfg +++ /dev/null @@ -1,11 +0,0 @@ -#define contact{ -# contact_name jmtaylor -# alias Jason Taylor -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-email -# host_notification_commands host-notify-by-email -# email jmtaylor90@gmail.com -#} diff --git a/roles/nagios/server/files/nagios-external/contacts/jstanley.cfg b/roles/nagios/server/files/nagios-external/contacts/jstanley.cfg deleted file mode 100644 index b32dd9902d..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/jstanley.cfg +++ /dev/null @@ -1,37 +0,0 @@ -define contact{ - contact_name jstanley - alias Jon Stanley - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email jonstanley@gmail.com -} - -define contact{ - contact_name jstanley-emergency - alias Jon Stanley - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 9178159801@vtext.com - pager 9178159801@vtext.com -} - -define contact{ - contact_name jstanleyp - alias Jon Stanley - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 9178159801@vtext.com - pager 9178159801@vtext.com -} diff --git a/roles/nagios/server/files/nagios-external/contacts/kevin.cfg b/roles/nagios/server/files/nagios-external/contacts/kevin.cfg deleted file mode 100644 index 9509abc77c..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/kevin.cfg +++ /dev/null @@ -1,35 +0,0 @@ -define contact{ - contact_name kevin - alias Kevin Fenzi - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email kevin-pager@scrye.com -} - -define contact{ - contact_name kevin-emergency - alias Kevin Fenzi - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager kevin-urgent@scrye.com -} - -define contact{ - contact_name kevinp - alias Kevin Fenzi - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager kevin-urgent@scrye.com -} diff --git a/roles/nagios/server/files/nagios-external/contacts/lmacken.cfg b/roles/nagios/server/files/nagios-external/contacts/lmacken.cfg deleted file mode 100644 index 92d35ae981..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/lmacken.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name lmacken - alias Luke Macken - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email lewk@vtext.com -} diff --git a/roles/nagios/server/files/nagios-external/contacts/mmcgrath.cfg b/roles/nagios/server/files/nagios-external/contacts/mmcgrath.cfg deleted file mode 100644 index 3c130d4568..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/mmcgrath.cfg +++ /dev/null @@ -1,38 +0,0 @@ -define contact{ - contact_name mmcgrath - alias Mike McGrath - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email mmcgrath@redhat.com -} - -define contact{ - contact_name mmcgrath-emergency - alias Mike McGrath - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email imlinux+mobile@gmail.com - pager imlinux+mobile@gmail.com -} - -define contact{ - contact_name mmcgrathp - alias Mike McGrath - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email imlinux+mobile@gmail.com - pager imlinux+mobile@gmail.com -} - diff --git a/roles/nagios/server/files/nagios-external/contacts/nb.cfg b/roles/nagios/server/files/nagios-external/contacts/nb.cfg deleted file mode 100644 index ccf2dcd937..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/nb.cfg +++ /dev/null @@ -1,38 +0,0 @@ -define contact{ - contact_name nb - alias Nick Bebout - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email nick@bebout.net -} - -#define contact{ -# contact_name nb-emergency -# alias Nick Bebout -# service_notification_period never -# host_notification_period never -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email nb5@txt.att.net -# pager nb5@txt.att.net -#} - -#define contact{ -# contact_name nbp -# alias Nick Bebout -# service_notification_period never -# host_notification_period never -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email nb5@txt.att.net -# pager nb5@txt.att.net -#} - diff --git a/roles/nagios/server/files/nagios-external/contacts/nigelj.cfg b/roles/nagios/server/files/nagios-external/contacts/nigelj.cfg deleted file mode 100644 index 59a4e228b6..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/nigelj.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name nigelj - alias Nigel Jones - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email dev@nigelj.com -} diff --git a/roles/nagios/server/files/nagios-external/contacts/null.cfg b/roles/nagios/server/files/nagios-external/contacts/null.cfg deleted file mode 100644 index 792c5e9b5a..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/null.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name null - alias null - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email nobody@fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios-external/contacts/puiterwijk.cfg b/roles/nagios/server/files/nagios-external/contacts/puiterwijk.cfg deleted file mode 100644 index 10da127438..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/puiterwijk.cfg +++ /dev/null @@ -1,35 +0,0 @@ -define contact{ - contact_name puiterwijk - alias Patrick Uiterwijk - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager pager@puiterwijk.org -} - -define contact{ - contact_name puiterwijkp - alias Patrick Uiterwijk - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager pager@puiterwijk.org -} - -define contact{ - contact_name puiterwijk-emergency - alias Patrick Uiterwijk - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager emergency@puiterwijk.org -} diff --git a/roles/nagios/server/files/nagios-external/contacts/ricky.cfg b/roles/nagios/server/files/nagios-external/contacts/ricky.cfg deleted file mode 100644 index 615f839b42..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/ricky.cfg +++ /dev/null @@ -1,38 +0,0 @@ -define contact{ - contact_name ricky - alias Ricky Zhou - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email ricky@rzhou.org -} - -define contact{ - contact_name ricky-emergency - alias Ricky Zhou - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 2014030692@vtext.com - pager 2014030692@vtext.com -} - -define contact{ - contact_name rickyp - alias Ricky Zhou - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 2014030692@vtext.com - pager 2014030692@vtext.com -} - diff --git a/roles/nagios/server/files/nagios-external/contacts/rigeld2.cfg b/roles/nagios/server/files/nagios-external/contacts/rigeld2.cfg deleted file mode 100644 index 7a29771974..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/rigeld2.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ -contact_name rigeld2 -alias Rob Marti -service_notification_period 24x7 -host_notification_period 24x7 -service_notification_options w,u,c,r -host_notification_options d,u,r -service_notification_commands notify-by-email -host_notification_commands host-notify-by-email -email robmartiwork@gmail.com -} diff --git a/roles/nagios/server/files/nagios-external/contacts/skvidal.cfg b/roles/nagios/server/files/nagios-external/contacts/skvidal.cfg deleted file mode 100644 index 27465a1484..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/skvidal.cfg +++ /dev/null @@ -1,48 +0,0 @@ -#define contact{ -# contact_name skvidal -# alias Seth Vidal -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-email -# host_notification_commands host-notify-by-email -# email seth-alert@sethdot.org -#} -# -#define contact{ -# contact_name skvidal_xmpp -# alias Seth Vidal -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-xmpp -# host_notification_commands host-notify-by-xmpp -# email skvidal@jabber.org -#} -# -#define contact{ -# contact_name skvidal-emergency -# alias Seth Vidal -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email page-seth-vidal@sethdot.org -#} -# -#define contact{ -# contact_name skvidalp -# alias Seth Vidal -# service_notification_period 16x7 -# host_notification_period 16x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email page-seth-vidal@sethdot.org -# pager page-seth-vidal@sethdot.org -#} diff --git a/roles/nagios/server/files/nagios-external/contacts/smooge.cfg b/roles/nagios/server/files/nagios-external/contacts/smooge.cfg deleted file mode 100644 index 079502c799..0000000000 --- a/roles/nagios/server/files/nagios-external/contacts/smooge.cfg +++ /dev/null @@ -1,38 +0,0 @@ -define contact{ - contact_name smooge - alias Stephen Smoogen - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email smooge+notify@gmail.com -} - -define contact{ - contact_name smooge-emergency - alias Stephen Smoogen - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email smooge+mobile@gmail.com - pager smooge+mobile@gmail.com -} - -define contact{ - contact_name smoogep - alias Stephen Smoogen - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email smooge+mobile@gmail.com - pager smooge+mobile@gmail.com -} - diff --git a/roles/nagios/server/files/nagios-external/escalations.cfg b/roles/nagios/server/files/nagios-external/escalations.cfg deleted file mode 100644 index b36d920e44..0000000000 --- a/roles/nagios/server/files/nagios-external/escalations.cfg +++ /dev/null @@ -1,22 +0,0 @@ -define hostescalation{ - host_name * - hostgroup_name * - contact_groups fedora-sysadmin-email,fedora-sysadmin-emergency,fedora-sysadmin-ircbot - first_notification 2 - last_notification 0 - notification_interval 60 - escalation_period 24x7 - escalation_options d,u,r -} - - -define serviceescalation{ - host_name * - description * - contact_groups fedora-sysadmin-email,fedora-sysadmin-emergency,fedora-sysadmin-ircbot - first_notification 2 - last_notification 0 - notification_interval 60 - escalation_period 24x7 - escalation_options w,u,c,r -} diff --git a/roles/nagios/server/files/nagios-external/hostgroups/all.cfg b/roles/nagios/server/files/nagios-external/hostgroups/all.cfg deleted file mode 100644 index 6bc95152cb..0000000000 --- a/roles/nagios/server/files/nagios-external/hostgroups/all.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############### -# All Servers and associated devices -############### - -define hostgroup { - hostgroup_name all - alias All hosts / Devices - members * -} diff --git a/roles/nagios/server/files/nagios-external/hostgroups/dns.cfg b/roles/nagios/server/files/nagios-external/hostgroups/dns.cfg deleted file mode 100644 index 2fec896fbb..0000000000 --- a/roles/nagios/server/files/nagios-external/hostgroups/dns.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############### -# DNS Servers -############### - -define hostgroup { - hostgroup_name dnsservers - alias DNS Servers - members ns02, ns04, ns05 -} diff --git a/roles/nagios/server/files/nagios-external/hosts/admin.fedoraproject.org.cfg b/roles/nagios/server/files/nagios-external/hosts/admin.fedoraproject.org.cfg deleted file mode 100644 index 359b5cd205..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/admin.fedoraproject.org.cfg +++ /dev/null @@ -1,329 +0,0 @@ -# -# phx2 -# -define host { - host_name 209.132.181.16-phx2 - alias 209.132.181.16-phx2 - use defaulttemplate - address 209.132.181.16 - parents proxy01.fedoraproject.org -} - -define host { - host_name proxy01.fedoraproject.org - alias proxy01.fedoraproject.org - use defaulttemplate - address 209.132.181.16 -} - -define host { - host_name 209.132.181.15-phx2 - alias 209.132.181.15-phx2 - use defaulttemplate - address 209.132.181.15 - parents proxy10.fedoraproject.org -} - -define host { - host_name proxy10.fedoraproject.org - alias proxy10.fedoraproject.org - use defaulttemplate - address 209.132.181.15 -} - -# -# rdu2 -# -define host { - host_name 8.43.85.67-rdu2 - alias 8.43.85.67-rdu2 - use defaulttemplate - address 8.43.85.67 - parents proxy14.fedoraproject.org -} - -define host { - host_name proxy14.fedoraproject.org - alias proxy14.fedoraproject.org - use defaulttemplate - address 8.43.85.67 -} - -# -# tummy -# - -#define host { -# host_name 66.35.62.166-tummy -# alias 66.35.62.166-tummy -# use defaulttemplate -# address 66.35.62.166 -# parents proxy03.fedoraproject.org -#} - -define host { - host_name proxy03.fedoraproject.org - alias proxy03.fedoraproject.org - use defaulttemplate - address 66.35.62.162 - parents tummy01.fedoraproject.org -} - -define host { - host_name tummy01.fedoraproject.org - alias tummy01.fedoraproject.org - use defaulttemplate - address 66.35.62.161 -} - -# -# ibiblio -# - -#define host { -# host_name 152.19.134.142-ibiblio -# alias 152.19.134.142-ibiblio -# use defaulttemplate -# address 152.19.134.142 -# parents proxy04.fedoraproject.org -#} - -define host { - host_name proxy04.fedoraproject.org - alias proxy04.fedoraproject.org - use defaulttemplate - address 152.19.134.142 - parents ibiblio02.fedoraproject.org -} - -define host { - host_name proxy12.fedoraproject.org - alias proxy12.fedoraproject.org - use defaulttemplate - address 152.19.134.198 - parents ibiblio05.fedoraproject.org -} - -define host { - host_name ibiblio02.fedoraproject.org - alias ibiblio02.fedoraproject.org - use defaulttemplate - address 152.19.134.169 -} - -#define host { -# host_name ibiblio05.fedoraproject.org -# alias ibiblio05.fedoraproject.org -# use defaulttemplate -# address 152.19.134.137 -#} - -# -# ibiblio ipv6 -# - -define host { - host_name admin-ipv6-ibiblio - alias 2610:28:3090:3001:dead:beef:cafe:fed3-ibiblio - use defaulttemplate - address 2610:28:3090:3001:dead:beef:cafe:fed3 - parents proxy04-ipv6-ibiblio.fedoraproject.org -} - -define host { - host_name proxy04-ipv6-ibiblio.fedoraproject.org - alias proxy04-ipv6-ibiblio.fedoraproject.org - use defaulttemplate - address 2610:28:3090:3001:dead:beef:cafe:fed3 -} - - -# -# internetx -# - -define host { - host_name 85.236.55.6-internetx - alias 85.236.55.6-internetx - use defaulttemplate - address 85.236.55.6 - parents proxy02.fedoraproject.org -} - -define host { - host_name proxy02.fedoraproject.org - alias proxy02.fedoraproject.org - use defaulttemplate - address 85.236.55.6 - parents internetx01.fedoraproject.org -} - -define host { - host_name internetx01.fedoraproject.org - alias internetx01.fedoraproject.org - use defaulttemplate - address 85.236.55.4 -} - -# -# internetx ipv6 -# - -define host { - host_name admin-ipv6-internetx - alias admin-ipv6-internetx - use defaulttemplate - address 2001:4178:2:1269::fed2 - parents proxy02-ipv6-internetx.fedoraproject.org -} - -define host { - host_name proxy02-ipv6-internetx.fedoraproject.org - alias proxy02-ipv6-internetx.fedoraproject.org - use defaulttemplate - address 2001:4178:2:1269::fed2 - parents internetx01-ipv6.fedoraproject.org -} - -define host { - host_name internetx01-ipv6.fedoraproject.org - alias internetx01-ipv6.fedoraproject.org - use defaulttemplate - address 2001:4178:2:1269::10 -} - -# -# osuosl -# - -# define host { -# host_name 140.211.169.197-osuosl -# alias 140.211.169.197-osuosl -# use defaulttemplate -# address 140.211.169.197 -# parents proxy06.fedoraproject.org -# } - -define host { - host_name proxy06.fedoraproject.org - alias proxy06.fedoraproject.org - use defaulttemplate - address 140.211.169.196 - parents osuosl01.fedoraproject.org -} - -define host { - host_name proxy09.fedoraproject.org - alias proxy09.fedoraproject.org - use defaulttemplate - address 140.211.169.206 - parents osuosl02.fedoraproject.org -} - -define host { - host_name osuosl01.fedoraproject.org - alias osuosl01.fedoraproject.org - use defaulttemplate - address 140.211.169.194 -} - -define host { - host_name osuosl02.fedoraproject.org - alias osuosl02.fedoraproject.org - use defaulttemplate - address 140.211.169.195 -} - -# -# bodhost -# - -#define host { -# host_name 213.175.193.206-bodhost -# alias 213.175.193.206-bodhost -# use defaulttemplate -# address 213.175.193.206 -# parents proxy07.fedoraproject.org -#} -# -#define host { -# host_name proxy07.fedoraproject.org -# alias proxy07.fedoraproject.org -# use defaulttemplate -# address 213.175.193.206 -# parents bodhost01.fedoraproject.org -#} -# -#define host { -# host_name bodhost01.fedoraproject.org -# alias bodhost01.fedoraproject.org -# use defaulttemplate -# address 94.76.206.175 -#} - -# -# coloamer -# - -define host { - host_name 67.203.2.67-coloamer - alias 67.203.2.67-coloamer - use defaulttemplate - address 67.203.2.67 - parents proxy08.fedoraproject.org -} - -define host { - host_name proxy08.fedoraproject.org - alias proxy08.fedoraproject.org - use defaulttemplate - address 67.203.2.67 - parents coloamer01.fedoraproject.org -} - -define host { - host_name coloamer01.fedoraproject.org - alias coloamer01.fedoraproject.org - use defaulttemplate - address 67.203.2.66 -} - -# -# coloamer ipv6 -# - -define host { - host_name admin-ipv6-coloamer - alias admin-ipv6-coloamer - use defaulttemplate - address 2607:f188::dead:beef:cafe:fed1 - parents proxy08-ipv6.fedoraproject.org -} - -define host { - host_name proxy08-ipv6.fedoraproject.org - alias proxy08-ipv6.fedoraproject.org - use defaulttemplate - address 2607:f188::dead:beef:cafe:fed1 -} - -# -# dedicated ipv6 -# - -define host { - host_name admin-ipv6-dedicated - alias admin-ipv6-dedicated - use defaulttemplate - address 2604:1580:fe00:0:dead:beef:cafe:fed1 - parents proxy11-ipv6.fedoraproject.org -} - -define host { - host_name proxy11-ipv6.fedoraproject.org - alias proxy11-ipv6.fedoraproject.org - use defaulttemplate - address 2604:1580:fe00:0:dead:beef:cafe:fed1 -} - - diff --git a/roles/nagios/server/files/nagios-external/hosts/fedorapeople.org.cfg b/roles/nagios/server/files/nagios-external/hosts/fedorapeople.org.cfg deleted file mode 100644 index a529e99a84..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/fedorapeople.org.cfg +++ /dev/null @@ -1,21 +0,0 @@ -define host { - host_name 152.19.134.199-people02 - alias 152.19.134.199-people02 - use defaulttemplate - address 152.19.134.199 - parents ibiblio05.fedoraproject.org -} - -define host { - host_name ibiblio05.fedoraproject.org - alias ibiblio05.fedoraproject.org - use defaulttemplate - address 152.19.134.137 -} - -define host { - host_name ipv6-people02 - alias ipv6-people02 - use defaulttemplate - address 2610:28:3090:3001:5054:ff:fea7:9474 -} diff --git a/roles/nagios/server/files/nagios-external/hosts/fedoraproject.org.cfg b/roles/nagios/server/files/nagios-external/hosts/fedoraproject.org.cfg deleted file mode 100644 index 7d28e783b0..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/fedoraproject.org.cfg +++ /dev/null @@ -1,87 +0,0 @@ -#define host { -# host_name 85.236.55.5-internetx -# alias 85.236.55.5-internetx -# use defaulttemplate -# address 85.236.55.5 -# parents proxy02.fedoraproject.org -#} - -define host { - host_name fpo-ipv6-internetx - alias fpo-ipv6-internetx - use defaulttemplate - address 2001:4178:2:1269::fed2 - parents proxy02-ipv6-internetx.fedoraproject.org -} - -define host { - host_name 66.35.62.162-tummy - alias 66.35.62.162-tummy - use defaulttemplate - address 66.35.62.162 - parents proxy03.fedoraproject.org -} - -define host { - host_name 152.19.134.142-ibiblio - alias 152.19.134.142-ibiblio - use defaulttemplate - address 152.19.134.142 - parents proxy04.fedoraproject.org -} - -define host { - host_name 152.19.134.198-ibiblio - alias 152.19.134.198-ibiblio - use defaulttemplate - address 152.19.134.198 - parents proxy12.fedoraproject.org -} - -# define host { -# host_name fpo-ipv6-ibiblio -# alias fpo-ipv6-ibiblio -# use defaulttemplate -# address 2610:28:3090:3001:dead:beef:cafe:fed4 -# parents proxy04-ipv6-ibiblio.fedoraproject.org -# } - -#define host { -# host_name proxy06.fedorarproject.org -# alias proxy06.fedorarproject.org -# use defaulttemplate -# address 140.211.169.197 -# parents proxy06.fedoraproject.org -#} - -#define host { -# host_name 213.175.193.205-bodhost -# alias 213.175.193.205-bodhost -# use defaulttemplate -# address 213.175.193.205 -# parents proxy07.fedoraproject.org -#} - -define host { - host_name 67.203.2.67-coloamerica - alias 67.203.2.67-coloamerica - use defaulttemplate - address 67.203.2.67 - parents proxy08.fedoraproject.org -} - -define host { - host_name fpo-ipv6-coloamerica - alias fpo-ipv6-coloamerica - use defaulttemplate - address 2607:f188::dead:beef:cafe:fed1 - parents proxy08-ipv6.fedoraproject.org -} - -define host { - host_name fpo-ipv6-dedicatedsolutions - alias fpo-ipv6-dedicatedsolutions - use defaulttemplate - address 2604:1580:fe00:0:dead:beef:cafe:fed1 - parents proxy11-ipv6.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios-external/hosts/gateway.fedoraproject.org.cfg b/roles/nagios/server/files/nagios-external/hosts/gateway.fedoraproject.org.cfg deleted file mode 100644 index 6232375a83..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/gateway.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name openvpn-phx - alias openvpn-phx - use defaulttemplate - address 192.168.0.1 -} - diff --git a/roles/nagios/server/files/nagios-external/hosts/koji.fedoraproject.org.cfg b/roles/nagios/server/files/nagios-external/hosts/koji.fedoraproject.org.cfg deleted file mode 100644 index 0ae513d265..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/koji.fedoraproject.org.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name koji-phx2 - alias koji-phx2 - use defaulttemplate - address 209.132.181.16 - check_command check_http - parents openvpn-phx -} diff --git a/roles/nagios/server/files/nagios-external/hosts/noc01.cfg b/roles/nagios/server/files/nagios-external/hosts/noc01.cfg deleted file mode 100644 index d4b656aeb6..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/noc01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name noc01 - alias noc01.vpn.fedoraproject.org - use defaulttemplate - address noc01.vpn.fedoraproject.org - parents openvpn-phx -} diff --git a/roles/nagios/server/files/nagios-external/hosts/ns-sb01.cfg b/roles/nagios/server/files/nagios-external/hosts/ns-sb01.cfg deleted file mode 100644 index 13d5663a32..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/ns-sb01.cfg +++ /dev/null @@ -1,14 +0,0 @@ -# define host { -# host_name ns-sb01 -# alias ns-sb01.fedoraproject.org -# use defaulttemplate -# address 69.174.247.243 -# parents serverbeach09.fedoraproject.org -# } - -# define host { -# host_name serverbeach09.fedoraproject.org -# alias serverbeach09.fedoraproject.org -# use defaulttemplate -# address 66.135.39.232 -# } diff --git a/roles/nagios/server/files/nagios-external/hosts/ns02.cfg b/roles/nagios/server/files/nagios-external/hosts/ns02.cfg deleted file mode 100644 index a4ee997185..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/ns02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ns02 - alias ns02.fedoraproject.org - use defaulttemplate - address 152.19.134.139 - parents ibiblio02.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios-external/hosts/ns04.cfg b/roles/nagios/server/files/nagios-external/hosts/ns04.cfg deleted file mode 100644 index 208bfb1821..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/ns04.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name ns04 - alias ns04.fedoraproject.org - use defaulttemplate - address 209.132.181.17 -} diff --git a/roles/nagios/server/files/nagios-external/hosts/ns05.cfg b/roles/nagios/server/files/nagios-external/hosts/ns05.cfg deleted file mode 100644 index 626fc8f374..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/ns05.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ns05 - alias ns05.fedoraproject.org - use defaulttemplate - address 85.236.55.10 - parents internetx01.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios-external/hosts/redhat.com.cfg b/roles/nagios/server/files/nagios-external/hosts/redhat.com.cfg deleted file mode 100644 index c1edfd5c48..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/redhat.com.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name 209.132.183.81-phx2 - alias 209.132.183.81-phx2 - use defaulttemplate - check_command true - address 209.132.183.81 -} diff --git a/roles/nagios/server/files/nagios-external/hosts/templates.cfg b/roles/nagios/server/files/nagios-external/hosts/templates.cfg deleted file mode 100644 index 5618dde226..0000000000 --- a/roles/nagios/server/files/nagios-external/hosts/templates.cfg +++ /dev/null @@ -1,15 +0,0 @@ -define host { - name defaulttemplate - check_command check-host-alive - max_check_attempts 8 - checks_enabled 1 - failure_prediction_enabled 0 - retain_status_information 1 - retain_nonstatus_information 1 - notification_interval 10 - notifications_enabled 1 - notification_options d,r - contact_groups fedora-sysadmin-ircbot - - register 0 -} diff --git a/roles/nagios/server/files/nagios-external/minimal.cfg b/roles/nagios/server/files/nagios-external/minimal.cfg deleted file mode 100644 index 0b86a77226..0000000000 --- a/roles/nagios/server/files/nagios-external/minimal.cfg +++ /dev/null @@ -1,361 +0,0 @@ -############################################################################### -# MINIMAL.CFG -# -# MINIMALISTIC OBJECT CONFIG FILE (Template-Based Object File Format) -# -# Last Modified: 08-10-2005 -# -# -# NOTE: This config file is intended to be used to test a Nagios installation -# that has been compiled with support for the template-based object -# configuration files. -# -# This config file is intended to servce as an *extremely* simple -# example of how you can create your object configuration file(s). -# If you're interested in more complex object configuration files for -# Nagios, look in the sample-config/template-object/ subdirectory of -# the distribution. -# -############################################################################### - - - -############################################################################### -############################################################################### -# -# TIME PERIODS -# -############################################################################### -############################################################################### - -# This defines a timeperiod where all times are valid for checks, -# notifications, etc. The classic "24x7" support nightmare. :-) - -define timeperiod{ - timeperiod_name 24x7 - alias 24 Hours A Day, 7 Days A Week - sunday 00:00-24:00 - monday 00:00-24:00 - tuesday 00:00-24:00 - wednesday 00:00-24:00 - thursday 00:00-24:00 - friday 00:00-24:00 - saturday 00:00-24:00 - } - - - -############################################################################### -############################################################################### -# -# COMMANDS -# -############################################################################### -############################################################################### - -# This is a sample service notification command that can be used to send email -# notifications (about service alerts) to contacts. -# 'check_ssh' command definition -define command{ - command_name notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$OUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ - } - - -# This is a sample host notification command that can be used to send email -# notifications (about host alerts) to contacts. - -define command{ - command_name host-notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $OUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ - } - - -# Command to check to see if a host is "alive" (up) by pinging it - -define command{ - command_name check-host-alive - command_line $USER1$/check_ping -H $HOSTADDRESS$ -w 99,99% -c 100,100% -p 1 - } - - -# Generic command to check a device by pinging it - -define command{ - command_name check_ping - command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 - } - - -# Command used to check disk space usage on local partitions - -define command{ - command_name check_local_disk - command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ - } - - -# Command used to check the number of currently logged in users on the -# local machine - -define command{ - command_name check_local_users - command_line $USER1$/check_users -w $ARG1$ -c $ARG2$ - } - - -# Command to check the number of running processing on the local machine - -define command{ - command_name check_local_procs - command_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ - } - - -# Command to check the load on the local machine - -define command{ - command_name check_local_load - command_line $USER1$/check_load -w $ARG1$ -c $ARG2$ - } - - - -############################################################################### -############################################################################### -# -# CONTACTS -# -############################################################################### -############################################################################### - -# In this simple config file, a single contact will receive all alerts. -# This assumes that you have an account (or email alias) called -# "nagios-admin" on the local host. - -define contact{ - contact_name nagios-admin - alias Nagios Admin - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email admin@fedoraproject.org - } - - - -############################################################################### -############################################################################### -# -# CONTACT GROUPS -# -############################################################################### -############################################################################### - -# We only have one contact in this simple configuration file, so there is -# no need to create more than one contact group. - -define contactgroup{ - contactgroup_name admins - alias Nagios Administrators - members nagios-admin - } - - - -############################################################################### -############################################################################### -# -# HOSTS -# -############################################################################### -############################################################################### - -# Generic host definition template - This is NOT a real host, just a template! - -define host{ - name generic-host ; The name of this host template - notifications_enabled 1 ; Host notifications are enabled - event_handler_enabled 1 ; Host event handler is enabled - flap_detection_enabled 1 ; Flap detection is enabled - failure_prediction_enabled 1 ; Failure prediction is enabled - process_perf_data 1 ; Process performance data - retain_status_information 1 ; Retain status information across program restarts - retain_nonstatus_information 1 ; Retain non-status information across program restarts - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE! - } - - -# Since this is a simple configuration file, we only monitor one host - the -# local host (this machine). - -define host{ - use generic-host ; Name of host template to use - host_name localhost - alias localhost - address 127.0.0.1 - check_command check-host-alive - max_check_attempts 10 - notification_interval 120 - notification_period 24x7 - notification_options d,r - contact_groups admins - } - - - -############################################################################### -############################################################################### -# -# HOST GROUPS -# -############################################################################### -############################################################################### - -# We only have one host in our simple config file, so there is no need to -# create more than one hostgroup. - -define hostgroup{ - hostgroup_name test - alias Test Servers - members localhost - } - - - -############################################################################### -############################################################################### -# -# SERVICES -# -############################################################################### -############################################################################### - -# Generic service definition template - This is NOT a real service, just a template! - -define service{ - name generic-service ; The 'name' of this service template - active_checks_enabled 1 ; Active service checks are enabled - passive_checks_enabled 1 ; Passive service checks are enabled/accepted - parallelize_check 1 ; Active service checks should be parallelized (disabling this can lead to major performance problems) - obsess_over_service 1 ; We should obsess over this service (if necessary) - check_freshness 0 ; Default is to NOT check service 'freshness' - notifications_enabled 1 ; Service notifications are enabled - event_handler_enabled 1 ; Service event handler is enabled - flap_detection_enabled 1 ; Flap detection is enabled - failure_prediction_enabled 1 ; Failure prediction is enabled - process_perf_data 1 ; Process performance data - retain_status_information 1 ; Retain status information across program restarts - retain_nonstatus_information 1 ; Retain non-status information across program restarts - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEMPLATE! - } - - -# Define a service to "ping" the local machine - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description PING - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_ping!100.0,20%!500.0,60% - } - - -# Define a service to check the disk space of the root partition -# on the local machine. Warning if < 20% free, critical if -# < 10% free space on partition. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Root Partition - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_disk!20%!10%!/ - } - - - -# Define a service to check the number of currently logged in -# users on the local machine. Warning if > 20 users, critical -# if > 50 users. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Current Users - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_users!20!50 - } - - -# Define a service to check the number of currently running procs -# on the local machine. Warning if > 250 processes, critical if -# > 400 users. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Total Processes - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_procs!250!400 - } - - - -# Define a service to check the load on the local machine. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Current Load - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_load!5.0,4.0,3.0!10.0,6.0,4.0 - } - - - -# EOF diff --git a/roles/nagios/server/files/nagios-external/misccommands.cfg b/roles/nagios/server/files/nagios-external/misccommands.cfg deleted file mode 100644 index f85ff0b310..0000000000 --- a/roles/nagios/server/files/nagios-external/misccommands.cfg +++ /dev/null @@ -1,114 +0,0 @@ -################################################################################ -# Sample object config file for Nagios -# -# Read the documentation for more information on this configuration file. I've -# provided some comments here, but things may not be so clear without further -# explanation, so make sure to read the HTML documentation! -# -# Last Modified: 12-17-2005 -# -################################################################################ - - -################################################################################ -# COMMAND DEFINITIONS -# -# SYNTAX: -# -# define command{ -# template -# name -# command_name -# command_line -# } -# -# WHERE: -# -# = object name of another command definition that should be -# used as a template for this definition (optional) -# = object name of command definition, referenced by other -# command definitions that use it as a template (optional) -# = name of the command, as recognized/used by Nagios -# = command line -# -################################################################################ - - - - -################################################################################ -# -# SAMPLE NOTIFICATION COMMANDS -# -# These are some example notification commands. They may or may not work on -# your system without modification. As an example, some systems will require -# you to use "/usr/bin/mailx" instead of "/usr/bin/mail" in the commands below. -# -################################################################################ - - -# 'host-notify-by-email' command definition -define command{ - command_name host-notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\nSource: $$(hostname)\n\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ - } - - -# 'host-notify-by-epager' command definition -define command{ - command_name host-notify-by-epager - command_line /usr/bin/printf "%b" "Host '$HOSTALIAS$' is $HOSTSTATE$\nInfo: $HOSTOUTPUT$\nSource: $$(hostname -s)\nTime: $LONGDATETIME$" | /bin/mail -s "$NOTIFICATIONTYPE$ alert - Host $HOSTNAME$ is $HOSTSTATE$" $CONTACTPAGER$ - } - -# 'host-notify-by-ircbot' command definition -define command{ - command_name host-notify-by-ircbot - command_line /usr/bin/printf "%b" "#fedora-noc $NOTIFICATIONTYPE$ - $HOSTALIAS$ is $HOSTSTATE$: $HOSTOUTPUT$ ($$(hostname -s))" | /usr/local/bin/irc-colorize.py | nc -w 1 value01.vpn.fedoraproject.org 5050 - } - -# 'notify-by-email' command definition -define command{ - command_name notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nSource: $$(hostname)\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ - } - - -# 'notify-by-epager' command definition -define command{ - command_name notify-by-epager - command_line /usr/bin/printf "%b" "Service: $SERVICEDESC$\nHost: $HOSTNAME$\nInfo: $SERVICEOUTPUT$\nSource: $$(hostname -s)\nDate: $LONGDATETIME$" | /bin/mail -s "$NOTIFICATIONTYPE$: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$" $CONTACTPAGER$ - } - -# 'notify-by-ircbot' command definition -define command{ - command_name notify-by-ircbot - command_line /usr/bin/printf "%b" "#fedora-noc $NOTIFICATIONTYPE$ - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$: $SERVICEOUTPUT$ ($$(hostname -s))" | /usr/local/bin/irc-colorize.py | nc -w 1 value01.vpn.fedoraproject.org 5050 - } - - - - -################################################################################ -# -# SAMPLE PERFORMANCE DATA COMMANDS -# -# These are sample performance data commands that can be used to send performance -# data output to two text files (one for hosts, another for services). If you -# plan on simply writing performance data out to a file, consider using the -# host_perfdata_file and service_perfdata_file options in the main config file. -# -################################################################################ - - -# 'process-host-perfdata' command definition -define command{ - command_name process-host-perfdata - command_line /usr/bin/printf "%b" "$LASTHOSTCHECK$\t$HOSTNAME$\t$HOSTSTATE$\t$HOSTATTEMPT$\t$HOSTSTATETYPE$\t$HOSTEXECUTIONTIME$\t$HOSTOUTPUT$\t$HOSTPERFDATA$\n" >> /var/log/nagios/host-perfdata.out - } - - -# 'process-service-perfdata' command definition -define command{ - command_name process-service-perfdata - command_line /usr/bin/printf "%b" "$LASTSERVICECHECK$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICESTATE$\t$SERVICEATTEMPT$\t$SERVICESTATETYPE$\t$SERVICEEXECUTIONTIME$\t$SERVICELATENCY$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$\n" >> /var/log/nagios/service-perfdata.out - } diff --git a/roles/nagios/server/files/nagios-external/nagios.cfg b/roles/nagios/server/files/nagios-external/nagios.cfg deleted file mode 100644 index df31a8c5c1..0000000000 --- a/roles/nagios/server/files/nagios-external/nagios.cfg +++ /dev/null @@ -1,952 +0,0 @@ -############################################################################## -# -# NAGIOS.CFG - Sample Main Config File for Nagios -# -# Read the documentation for more information on this configuration -# file. I've provided some comments here, but things may not be so -# clear without further explanation. -# -# Last Modified: 11-23-2005 -# -############################################################################## - - -# LOG FILE -# This is the main log file where service and host events are logged -# for historical purposes. This should be the first option specified -# in the config file!!! - -log_file=/var/log/nagios/nagios.log - - - -# OBJECT CONFIGURATION FILE(S) -# This is the configuration file in which you define hosts, host -# groups, contacts, contact groups, services, etc. I guess it would -# be better called an object definition file, but for historical -# reasons it isn't. You can split object definitions into several -# different config files by using multiple cfg_file statements here. -# Nagios will read and process all the config files you define. -# This can be very useful if you want to keep command definitions -# separate from host and contact definitions... - -# Plugin commands (service and host check commands) -# Arguments are likely to change between different releases of the -# plugins, so you should use the same config file provided with the -# plugin release rather than the one provided with Nagios. -cfg_file=/etc/nagios/checkcommands.cfg - -# Misc commands (notification and event handler commands, etc) -cfg_file=/etc/nagios/misccommands.cfg - -# You can split other types of object definitions across several -# config files if you wish (as done here), or keep them all in a -# single config file. - -#cfg_file=/etc/nagios/minimal.cfg - -#cfg_file=/etc/nagios/contactgroups.cfg -#cfg_file=/etc/nagios/contacts.cfg -#cfg_file=/etc/nagios/dependencies.cfg -cfg_file=/etc/nagios/escalations.cfg -#cfg_file=/etc/nagios/hostgroups.cfg -#cfg_file=/etc/nagios/hosts.cfg -#cfg_file=/etc/nagios/services.cfg -cfg_file=/etc/nagios/timeperiods.cfg - -# Extended host/service info definitions are now stored along with -# other object definitions: -#cfg_file=/etc/nagios/hostextinfo.cfg -#cfg_file=/etc/nagios/serviceextinfo.cfg - -# You can also tell Nagios to process all config files (with a .cfg -# extension) in a particular directory by using the cfg_dir -# directive as shown below: -cfg_dir=/etc/nagios/hosts -cfg_dir=/etc/nagios/hostgroups -cfg_dir=/etc/nagios/services -cfg_dir=/etc/nagios/servicedeps -cfg_dir=/etc/nagios/contacts -cfg_dir=/etc/nagios/contactgroups - - -#cfg_dir=/etc/nagios/servers -#cfg_dir=/etc/nagios/printers -#cfg_dir=/etc/nagios/switches -#cfg_dir=/etc/nagios/routers - - - -# OBJECT CACHE FILE -# This option determines where object definitions are cached when -# Nagios starts/restarts. The CGIs read object definitions from -# this cache file (rather than looking at the object config files -# directly) in order to prevent inconsistencies that can occur -# when the config files are modified after Nagios starts. - -object_cache_file=/var/log/nagios/objects.cache - - - -# RESOURCE FILE -# This is an optional resource file that contains $USERx$ macro -# definitions. Multiple resource files can be specified by using -# multiple resource_file definitions. The CGIs will not attempt to -# read the contents of resource files, so information that is -# considered to be sensitive (usernames, passwords, etc) can be -# defined as macros in this file and restrictive permissions (600) -# can be placed on this file. - -resource_file=/etc/nagios/private/resource.cfg - - - -# STATUS FILE -# This is where the current status of all monitored services and -# hosts is stored. Its contents are read and processed by the CGIs. -# The contents of the status file are deleted every time Nagios -# restarts. - -status_file=/var/spool/nagios/status.dat - - - -# NAGIOS USER -# This determines the effective user that Nagios should run as. -# You can either supply a username or a UID. - -nagios_user=nagios - - - -# NAGIOS GROUP -# This determines the effective group that Nagios should run as. -# You can either supply a group name or a GID. - -nagios_group=nagios - - - -# EXTERNAL COMMAND OPTION -# This option allows you to specify whether or not Nagios should check -# for external commands (in the command file defined below). By default -# Nagios will *not* check for external commands, just to be on the -# cautious side. If you want to be able to use the CGI command interface -# you will have to enable this. Setting this value to 0 disables command -# checking (the default), other values enable it. - -check_external_commands=1 - - - -# EXTERNAL COMMAND CHECK INTERVAL -# This is the interval at which Nagios should check for external commands. -# This value works of the interval_length you specify later. If you leave -# that at its default value of 60 (seconds), a value of 1 here will cause -# Nagios to check for external commands every minute. If you specify a -# number followed by an "s" (i.e. 15s), this will be interpreted to mean -# actual seconds rather than a multiple of the interval_length variable. -# Note: In addition to reading the external command file at regularly -# scheduled intervals, Nagios will also check for external commands after -# event handlers are executed. -# NOTE: Setting this value to -1 causes Nagios to check the external -# command file as often as possible. - -#command_check_interval=1 -#command_check_interval=15s -command_check_interval=15s - - - -# EXTERNAL COMMAND FILE -# This is the file that Nagios checks for external command requests. -# It is also where the command CGI will write commands that are submitted -# by users, so it must be writeable by the user that the web server -# is running as (usually 'nobody'). Permissions should be set at the -# directory level instead of on the file, as the file is deleted every -# time its contents are processed. - -command_file=/var/spool/nagios/cmd/nagios.cmd - - - -# LOCK FILE -# This is the lockfile that Nagios will use to store its PID number -# in when it is running in daemon mode. - -lock_file=/var/run/nagios/nagios.pid - - -# QUERY HANDLER INTERFACE -# This is the socket that is created for the Query Handler interface - -query_socket=/var/spool/nagios/cmd/nagios.qh - - - -# TEMP FILE -# This is a temporary file that is used as scratch space when Nagios -# updates the status log, cleans the comment file, etc. This file -# is created, used, and deleted throughout the time that Nagios is -# running. - -temp_file=/var/log/nagios/nagios.tmp - - - -# EVENT BROKER OPTIONS -# Controls what (if any) data gets sent to the event broker. -# Values: 0 = Broker nothing -# -1 = Broker everything -# = See documentation - -event_broker_options=0 - - - -# EVENT BROKER MODULE(S) -# This directive is used to specify an event broker module that should -# by loaded by Nagios at startup. Use multiple directives if you want -# to load more than one module. Arguments that should be passed to -# the module at startup are seperated from the module path by a space. -# -# Example: -# -# broker_module= [moduleargs] - -#broker_module=/somewhere/module1.o -#broker_module=/somewhere/module2.o arg1 arg2=3 debug=0 - - - - -# LOG ROTATION METHOD -# This is the log rotation method that Nagios should use to rotate -# the main log file. Values are as follows.. -# n = None - don't rotate the log -# h = Hourly rotation (top of the hour) -# d = Daily rotation (midnight every day) -# w = Weekly rotation (midnight on Saturday evening) -# m = Monthly rotation (midnight last day of month) - -log_rotation_method=d - - - -# LOG ARCHIVE PATH -# This is the directory where archived (rotated) log files should be -# placed (assuming you've chosen to do log rotation). - -log_archive_path=/var/log/nagios/archives - - - -# LOGGING OPTIONS -# If you want messages logged to the syslog facility, as well as the -# NetAlarm log file set this option to 1. If not, set it to 0. - -use_syslog=1 - - - -# NOTIFICATION LOGGING OPTION -# If you don't want notifications to be logged, set this value to 0. -# If notifications should be logged, set the value to 1. - -log_notifications=1 - - - -# SERVICE RETRY LOGGING OPTION -# If you don't want service check retries to be logged, set this value -# to 0. If retries should be logged, set the value to 1. - -log_service_retries=1 - - - -# HOST RETRY LOGGING OPTION -# If you don't want host check retries to be logged, set this value to -# 0. If retries should be logged, set the value to 1. - -log_host_retries=1 - - - -# EVENT HANDLER LOGGING OPTION -# If you don't want host and service event handlers to be logged, set -# this value to 0. If event handlers should be logged, set the value -# to 1. - -log_event_handlers=1 - - - -# INITIAL STATES LOGGING OPTION -# If you want Nagios to log all initial host and service states to -# the main log file (the first time the service or host is checked) -# you can enable this option by setting this value to 1. If you -# are not using an external application that does long term state -# statistics reporting, you do not need to enable this option. In -# this case, set the value to 0. - -log_initial_states=0 - - - -# EXTERNAL COMMANDS LOGGING OPTION -# If you don't want Nagios to log external commands, set this value -# to 0. If external commands should be logged, set this value to 1. -# Note: This option does not include logging of passive service -# checks - see the option below for controlling whether or not -# passive checks are logged. - -log_external_commands=1 - - - -# PASSIVE CHECKS LOGGING OPTION -# If you don't want Nagios to log passive host and service checks, set -# this value to 0. If passive checks should be logged, set -# this value to 1. - -log_passive_checks=1 - - - -# GLOBAL HOST AND SERVICE EVENT HANDLERS -# These options allow you to specify a host and service event handler -# command that is to be run for every host or service state change. -# The global event handler is executed immediately prior to the event -# handler that you have optionally specified in each host or -# service definition. The command argument is the short name of a -# command definition that you define in your host configuration file. -# Read the HTML docs for more information. - -#global_host_event_handler=somecommand -#global_service_event_handler=somecommand - - - -# SERVICE INTER-CHECK DELAY METHOD -# This is the method that Nagios should use when initially -# "spreading out" service checks when it starts monitoring. The -# default is to use smart delay calculation, which will try to -# space all service checks out evenly to minimize CPU load. -# Using the dumb setting will cause all checks to be scheduled -# at the same time (with no delay between them)! This is not a -# good thing for production, but is useful when testing the -# parallelization functionality. -# n = None - don't use any delay between checks -# d = Use a "dumb" delay of 1 second between checks -# s = Use "smart" inter-check delay calculation -# x.xx = Use an inter-check delay of x.xx seconds - -service_inter_check_delay_method=s - - - -# MAXIMUM SERVICE CHECK SPREAD -# This variable determines the timeframe (in minutes) from the -# program start time that an initial check of all services should -# be completed. Default is 30 minutes. - -max_service_check_spread=30 - - - -# SERVICE CHECK INTERLEAVE FACTOR -# This variable determines how service checks are interleaved. -# Interleaving the service checks allows for a more even -# distribution of service checks and reduced load on remote -# hosts. Setting this value to 1 is equivalent to how versions -# of Nagios previous to 0.0.5 did service checks. Set this -# value to s (smart) for automatic calculation of the interleave -# factor unless you have a specific reason to change it. -# s = Use "smart" interleave factor calculation -# x = Use an interleave factor of x, where x is a -# number greater than or equal to 1. - -service_interleave_factor=s - - - -# HOST INTER-CHECK DELAY METHOD -# This is the method that Nagios should use when initially -# "spreading out" host checks when it starts monitoring. The -# default is to use smart delay calculation, which will try to -# space all host checks out evenly to minimize CPU load. -# Using the dumb setting will cause all checks to be scheduled -# at the same time (with no delay between them)! -# n = None - don't use any delay between checks -# d = Use a "dumb" delay of 1 second between checks -# s = Use "smart" inter-check delay calculation -# x.xx = Use an inter-check delay of x.xx seconds - -host_inter_check_delay_method=s - - - -# MAXIMUM HOST CHECK SPREAD -# This variable determines the timeframe (in minutes) from the -# program start time that an initial check of all hosts should -# be completed. Default is 30 minutes. - -max_host_check_spread=30 - - - -# MAXIMUM CONCURRENT SERVICE CHECKS -# This option allows you to specify the maximum number of -# service checks that can be run in parallel at any given time. -# Specifying a value of 1 for this variable essentially prevents -# any service checks from being parallelized. A value of 0 -# will not restrict the number of concurrent checks that are -# being executed. - -max_concurrent_checks=0 - - - -# SERVICE CHECK REAPER FREQUENCY -# This is the frequency (in seconds!) that Nagios will process -# the results of services that have been checked. - -service_reaper_frequency=10 - - - - -# AUTO-RESCHEDULING OPTION -# This option determines whether or not Nagios will attempt to -# automatically reschedule active host and service checks to -# "smooth" them out over time. This can help balance the load on -# the monitoring server. -# WARNING: THIS IS AN EXPERIMENTAL FEATURE - IT CAN DEGRADE -# PERFORMANCE, RATHER THAN INCREASE IT, IF USED IMPROPERLY - -auto_reschedule_checks=0 - - - -# AUTO-RESCHEDULING INTERVAL -# This option determines how often (in seconds) Nagios will -# attempt to automatically reschedule checks. This option only -# has an effect if the auto_reschedule_checks option is enabled. -# Default is 30 seconds. -# WARNING: THIS IS AN EXPERIMENTAL FEATURE - IT CAN DEGRADE -# PERFORMANCE, RATHER THAN INCREASE IT, IF USED IMPROPERLY - -auto_rescheduling_interval=30 - - - - -# AUTO-RESCHEDULING WINDOW -# This option determines the "window" of time (in seconds) that -# Nagios will look at when automatically rescheduling checks. -# Only host and service checks that occur in the next X seconds -# (determined by this variable) will be rescheduled. This option -# only has an effect if the auto_reschedule_checks option is -# enabled. Default is 180 seconds (3 minutes). -# WARNING: THIS IS AN EXPERIMENTAL FEATURE - IT CAN DEGRADE -# PERFORMANCE, RATHER THAN INCREASE IT, IF USED IMPROPERLY - -auto_rescheduling_window=180 - - - -# SLEEP TIME -# This is the number of seconds to sleep between checking for system -# events and service checks that need to be run. - -sleep_time=0.25 - - - -# TIMEOUT VALUES -# These options control how much time Nagios will allow various -# types of commands to execute before killing them off. Options -# are available for controlling maximum time allotted for -# service checks, host checks, event handlers, notifications, the -# ocsp command, and performance data commands. All values are in -# seconds. - -service_check_timeout=30 -host_check_timeout=30 -event_handler_timeout=30 -notification_timeout=45 -ocsp_timeout=5 -perfdata_timeout=5 - - - -# RETAIN STATE INFORMATION -# This setting determines whether or not Nagios will save state -# information for services and hosts before it shuts down. Upon -# startup Nagios will reload all saved service and host state -# information before starting to monitor. This is useful for -# maintaining long-term data on state statistics, etc, but will -# slow Nagios down a bit when it (re)starts. Since its only -# a one-time penalty, I think its well worth the additional -# startup delay. - -retain_state_information=1 - - - -# STATE RETENTION FILE -# This is the file that Nagios should use to store host and -# service state information before it shuts down. The state -# information in this file is also read immediately prior to -# starting to monitor the network when Nagios is restarted. -# This file is used only if the preserve_state_information -# variable is set to 1. - -state_retention_file=/var/log/nagios/retention.dat - - - -# RETENTION DATA UPDATE INTERVAL -# This setting determines how often (in minutes) that Nagios -# will automatically save retention data during normal operation. -# If you set this value to 0, Nagios will not save retention -# data at regular interval, but it will still save retention -# data before shutting down or restarting. If you have disabled -# state retention, this option has no effect. - -retention_update_interval=60 - - - -# USE RETAINED PROGRAM STATE -# This setting determines whether or not Nagios will set -# program status variables based on the values saved in the -# retention file. If you want to use retained program status -# information, set this value to 1. If not, set this value -# to 0. - -use_retained_program_state=1 - - - -# USE RETAINED SCHEDULING INFO -# This setting determines whether or not Nagios will retain -# the scheduling info (next check time) for hosts and services -# based on the values saved in the retention file. If you -# If you want to use retained scheduling info, set this -# value to 1. If not, set this value to 0. - -use_retained_scheduling_info=0 - - - -# INTERVAL LENGTH -# This is the seconds per unit interval as used in the -# host/contact/service configuration files. Setting this to 60 means -# that each interval is one minute long (60 seconds). Other settings -# have not been tested much, so your mileage is likely to vary... - -interval_length=60 - - - -# AGGRESSIVE HOST CHECKING OPTION -# If you don't want to turn on aggressive host checking features, set -# this value to 0 (the default). Otherwise set this value to 1 to -# enable the aggressive check option. Read the docs for more info -# on what aggressive host check is or check out the source code in -# base/checks.c - -use_aggressive_host_checking=0 - - - -# SERVICE CHECK EXECUTION OPTION -# This determines whether or not Nagios will actively execute -# service checks when it initially starts. If this option is -# disabled, checks are not actively made, but Nagios can still -# receive and process passive check results that come in. Unless -# you're implementing redundant hosts or have a special need for -# disabling the execution of service checks, leave this enabled! -# Values: 1 = enable checks, 0 = disable checks - -execute_service_checks=1 - - - -# PASSIVE SERVICE CHECK ACCEPTANCE OPTION -# This determines whether or not Nagios will accept passive -# service checks results when it initially (re)starts. -# Values: 1 = accept passive checks, 0 = reject passive checks - -accept_passive_service_checks=1 - - - -# HOST CHECK EXECUTION OPTION -# This determines whether or not Nagios will actively execute -# host checks when it initially starts. If this option is -# disabled, checks are not actively made, but Nagios can still -# receive and process passive check results that come in. Unless -# you're implementing redundant hosts or have a special need for -# disabling the execution of host checks, leave this enabled! -# Values: 1 = enable checks, 0 = disable checks - -execute_host_checks=1 - - - -# PASSIVE HOST CHECK ACCEPTANCE OPTION -# This determines whether or not Nagios will accept passive -# host checks results when it initially (re)starts. -# Values: 1 = accept passive checks, 0 = reject passive checks - -accept_passive_host_checks=1 - - - -# NOTIFICATIONS OPTION -# This determines whether or not Nagios will sent out any host or -# service notifications when it is initially (re)started. -# Values: 1 = enable notifications, 0 = disable notifications - -enable_notifications=1 - - - -# EVENT HANDLER USE OPTION -# This determines whether or not Nagios will run any host or -# service event handlers when it is initially (re)started. Unless -# you're implementing redundant hosts, leave this option enabled. -# Values: 1 = enable event handlers, 0 = disable event handlers - -enable_event_handlers=1 - - - -# PROCESS PERFORMANCE DATA OPTION -# This determines whether or not Nagios will process performance -# data returned from service and host checks. If this option is -# enabled, host performance data will be processed using the -# host_perfdata_command (defined below) and service performance -# data will be processed using the service_perfdata_command (also -# defined below). Read the HTML docs for more information on -# performance data. -# Values: 1 = process performance data, 0 = do not process performance data - -process_performance_data=0 - - - -# HOST AND SERVICE PERFORMANCE DATA PROCESSING COMMANDS -# These commands are run after every host and service check is -# performed. These commands are executed only if the -# enable_performance_data option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on performance data. - -#host_perfdata_command=process-host-perfdata -#service_perfdata_command=process-service-perfdata - - - -# HOST AND SERVICE PERFORMANCE DATA FILES -# These files are used to store host and service performance data. -# Performance data is only written to these files if the -# enable_performance_data option (above) is set to 1. - -#host_perfdata_file=/tmp/host-perfdata -#service_perfdata_file=/tmp/service-perfdata - - - -# HOST AND SERVICE PERFORMANCE DATA FILE TEMPLATES -# These options determine what data is written (and how) to the -# performance data files. The templates may contain macros, special -# characters (\t for tab, \r for carriage return, \n for newline) -# and plain text. A newline is automatically added after each write -# to the performance data file. Some examples of what you can do are -# shown below. - -#host_perfdata_file_template=[HOSTPERFDATA]\t$TIMET$\t$HOSTNAME$\t$HOSTEXECUTIONTIME$\t$HOSTOUTPUT$\t$HOSTPERFDATA$ -#service_perfdata_file_template=[SERVICEPERFDATA]\t$TIMET$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICEEXECUTIONTIME$\t$SERVICELATENCY$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$ - - - - -# HOST AND SERVICE PERFORMANCE DATA FILE MODES -# This option determines whether or not the host and service -# performance data files are opened in write ("w") or append ("a") -# mode. Unless you are the files are named pipes, you will probably -# want to use the default mode of append ("a"). - -#host_perfdata_file_mode=a -#service_perfdata_file_mode=a - - - -# HOST AND SERVICE PERFORMANCE DATA FILE PROCESSING INTERVAL -# These options determine how often (in seconds) the host and service -# performance data files are processed using the commands defined -# below. A value of 0 indicates the files should not be periodically -# processed. - -#host_perfdata_file_processing_interval=0 -#service_perfdata_file_processing_interval=0 - - - -# HOST AND SERVICE PERFORMANCE DATA FILE PROCESSING COMMANDS -# These commands are used to periodically process the host and -# service performance data files. The interval at which the -# processing occurs is determined by the options above. - -#host_perfdata_file_processing_command=process-host-perfdata-file -#service_perfdata_file_processing_command=process-service-perfdata-file - - - -# OBSESS OVER SERVICE CHECKS OPTION -# This determines whether or not Nagios will obsess over service -# checks and run the ocsp_command defined below. Unless you're -# planning on implementing distributed monitoring, do not enable -# this option. Read the HTML docs for more information on -# implementing distributed monitoring. -# Values: 1 = obsess over services, 0 = do not obsess (default) - -obsess_over_services=0 - - - -# OBSESSIVE COMPULSIVE SERVICE PROCESSOR COMMAND -# This is the command that is run for every service check that is -# processed by Nagios. This command is executed only if the -# obsess_over_service option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on implementing distributed monitoring. - -#ocsp_command=somecommand - - - -# ORPHANED SERVICE CHECK OPTION -# This determines whether or not Nagios will periodically -# check for orphaned services. Since service checks are not -# rescheduled until the results of their previous execution -# instance are processed, there exists a possibility that some -# checks may never get rescheduled. This seems to be a rare -# problem and should not happen under normal circumstances. -# If you have problems with service checks never getting -# rescheduled, you might want to try enabling this option. -# Values: 1 = enable checks, 0 = disable checks - -check_for_orphaned_services=0 - - - -# SERVICE FRESHNESS CHECK OPTION -# This option determines whether or not Nagios will periodically -# check the "freshness" of service results. Enabling this option -# is useful for ensuring passive checks are received in a timely -# manner. -# Values: 1 = enabled freshness checking, 0 = disable freshness checking - -check_service_freshness=1 - - - -# SERVICE FRESHNESS CHECK INTERVAL -# This setting determines how often (in seconds) Nagios will -# check the "freshness" of service check results. If you have -# disabled service freshness checking, this option has no effect. - -service_freshness_check_interval=45 - - - -# HOST FRESHNESS CHECK OPTION -# This option determines whether or not Nagios will periodically -# check the "freshness" of host results. Enabling this option -# is useful for ensuring passive checks are received in a timely -# manner. -# Values: 1 = enabled freshness checking, 0 = disable freshness checking - -check_host_freshness=0 - - - -# HOST FRESHNESS CHECK INTERVAL -# This setting determines how often (in seconds) Nagios will -# check the "freshness" of host check results. If you have -# disabled host freshness checking, this option has no effect. - -host_freshness_check_interval=60 - - - -# AGGREGATED STATUS UPDATES -# This option determines whether or not Nagios will -# aggregate updates of host, service, and program status -# data. Normally, status data is updated immediately when -# a change occurs. This can result in high CPU loads if -# you are monitoring a lot of services. If you want Nagios -# to only refresh status data every few seconds, disable -# this option. -# Values: 1 = enable aggregate updates, 0 = disable aggregate updates - -#aggregate_status_updates=1 - - - -# AGGREGATED STATUS UPDATE INTERVAL -# Combined with the aggregate_status_updates option, -# this option determines the frequency (in seconds!) that -# Nagios will periodically dump program, host, and -# service status data. If you are not using aggregated -# status data updates, this option has no effect. - -status_update_interval=15 - - - -# FLAP DETECTION OPTION -# This option determines whether or not Nagios will try -# and detect hosts and services that are "flapping". -# Flapping occurs when a host or service changes between -# states too frequently. When Nagios detects that a -# host or service is flapping, it will temporarily suppress -# notifications for that host/service until it stops -# flapping. Flap detection is very experimental, so read -# the HTML documentation before enabling this feature! -# Values: 1 = enable flap detection -# 0 = disable flap detection (default) - -enable_flap_detection=0 - - - -# FLAP DETECTION THRESHOLDS FOR HOSTS AND SERVICES -# Read the HTML documentation on flap detection for -# an explanation of what this option does. This option -# has no effect if flap detection is disabled. - -low_service_flap_threshold=5.0 -high_service_flap_threshold=20.0 -low_host_flap_threshold=5.0 -high_host_flap_threshold=20.0 - - - -# DATE FORMAT OPTION -# This option determines how short dates are displayed. Valid options -# include: -# us (MM-DD-YYYY HH:MM:SS) -# euro (DD-MM-YYYY HH:MM:SS) -# iso8601 (YYYY-MM-DD HH:MM:SS) -# strict-iso8601 (YYYY-MM-DDTHH:MM:SS) -# - -date_format=us - - - -# P1.PL FILE LOCATION -# This value determines where the p1.pl perl script (used by the -# embedded Perl interpreter) is located. If you didn't compile -# Nagios with embedded Perl support, this option has no effect. - -p1_file=/usr/sbin/p1.pl - - - -# ILLEGAL OBJECT NAME CHARACTERS -# This option allows you to specify illegal characters that cannot -# be used in host names, service descriptions, or names of other -# object types. - -illegal_object_name_chars=`~!$%^&*|'"<>?,()= - - - -# ILLEGAL MACRO OUTPUT CHARACTERS -# This option allows you to specify illegal characters that are -# stripped from macros before being used in notifications, event -# handlers, etc. This DOES NOT affect macros used in service or -# host check commands. -# The following macros are stripped of the characters you specify: -# $HOSTOUTPUT$ -# $HOSTPERFDATA$ -# $HOSTACKAUTHOR$ -# $HOSTACKCOMMENT$ -# $SERVICEOUTPUT$ -# $SERVICEPERFDATA$ -# $SERVICEACKAUTHOR$ -# $SERVICEACKCOMMENT$ - -illegal_macro_output_chars=`~$&|'"<> - - - -# REGULAR EXPRESSION MATCHING -# This option controls whether or not regular expression matching -# takes place in the object config files. Regular expression -# matching is used to match host, hostgroup, service, and service -# group names/descriptions in some fields of various object types. -# Values: 1 = enable regexp matching, 0 = disable regexp matching - -use_regexp_matching=0 - - - -# "TRUE" REGULAR EXPRESSION MATCHING -# This option controls whether or not "true" regular expression -# matching takes place in the object config files. This option -# only has an effect if regular expression matching is enabled -# (see above). If this option is DISABLED, regular expression -# matching only occurs if a string contains wildcard characters -# (* and ?). If the option is ENABLED, regexp matching occurs -# all the time (which can be annoying). -# Values: 1 = enable true matching, 0 = disable true matching - -use_true_regexp_matching=0 - - - - -# ADMINISTRATOR EMAIL ADDRESS -# The email address of the administrator of *this* machine (the one -# doing the monitoring). Nagios never uses this value itself, but -# you can access this value by using the $ADMINEMAIL$ macro in your -# notification commands. - -admin_email=nagios - - - -# ADMINISTRATOR PAGER NUMBER/ADDRESS -# The pager number/address for the administrator of *this* machine. -# Nagios never uses this value itself, but you can access this -# value by using the $ADMINPAGER$ macro in your notification -# commands. - -admin_pager=pagenagios - - - -# DAEMON CORE DUMP OPTION -# This option determines whether or not Nagios is allowed to create -# a core dump when it runs as a daemon. Note that it is generally -# considered bad form to allow this, but it may be useful for -# debugging purposes. -# Values: 1 - Allow core dumps -# 0 - Do not allow core dumps (default) - -daemon_dumps_core=0 - - - -# EOF (End of file) - diff --git a/roles/nagios/server/files/nagios-external/nsca.cfg b/roles/nagios/server/files/nagios-external/nsca.cfg deleted file mode 100644 index 352dd19a43..0000000000 --- a/roles/nagios/server/files/nagios-external/nsca.cfg +++ /dev/null @@ -1,191 +0,0 @@ -#################################################### -# Sample NSCA Daemon Config File -# Written by: Ethan Galstad (nagios@nagios.org) -# -# Last Modified: 04-03-2006 -#################################################### - - -# PID FILE -# The name of the file in which the NSCA daemon should write it's process ID -# number. The file is only written if the NSCA daemon is started by the root -# user as a single- or multi-process daemon. - -pid_file=/var/run/nsca.pid - - - -# PORT NUMBER -# Port number we should wait for connections on. -# This must be a non-priveledged port (i.e. > 1024). - -server_port=5667 - - - -# SERVER ADDRESS -# Address that NSCA has to bind to in case there are -# more as one interface and we do not want NSCA to bind -# (thus listen) on all interfaces. - -server_address=127.0.0.1 - - - -# NSCA USER -# This determines the effective user that the NSCA daemon should run as. -# You can either supply a username or a UID. -# -# NOTE: This option is ignored if NSCA is running under either inetd or xinetd - -nsca_user=nagios - - - -# NSCA GROUP -# This determines the effective group that the NSCA daemon should run as. -# You can either supply a group name or a GID. -# -# NOTE: This option is ignored if NSCA is running under either inetd or xinetd - -nsca_group=nagios - - - -# NSCA CHROOT -# If specified, determines a directory into which the nsca daemon -# will perform a chroot(2) operation before dropping its privileges. -# for the security conscious this can add a layer of protection in -# the event that the nagios daemon is compromised. -# -# NOTE: if you specify this option, the command file will be opened -# relative to this directory. - -#nsca_chroot=/var/run/nagios/rw - - - -# DEBUGGING OPTION -# This option determines whether or not debugging -# messages are logged to the syslog facility. -# Values: 0 = debugging off, 1 = debugging on - -debug=0 - - - -# COMMAND FILE -# This is the location of the Nagios command file that the daemon -# should write all service check results that it receives. - -command_file=/var/spool/nagios/cmd/nagios.cmd - - -# ALTERNATE DUMP FILE -# This is used to specify an alternate file the daemon should -# write service check results to in the event the command file -# does not exist. It is important to note that the command file -# is implemented as a named pipe and only exists when Nagios is -# running. You may want to modify the startup script for Nagios -# to dump the contents of this file into the command file after -# it starts Nagios. Or you may simply choose to ignore any -# check results received while Nagios was not running... - -alternate_dump_file=/var/spool/nagios/cmd/nsca.dump - - - -# AGGREGATED WRITES OPTION -# This option determines whether or not the nsca daemon will -# aggregate writes to the external command file for client -# connections that contain multiple check results. If you -# are queueing service check results on remote hosts and -# sending them to the nsca daemon in bulk, you will probably -# want to enable bulk writes, as this will be a bit more -# efficient. -# Values: 0 = do not aggregate writes, 1 = aggregate writes - -aggregate_writes=0 - - - -# APPEND TO FILE OPTION -# This option determines whether or not the nsca daemon will -# will open the external command file for writing or appending. -# This option should almost *always* be set to 0! -# Values: 0 = open file for writing, 1 = open file for appending - -append_to_file=0 - - - -# MAX PACKET AGE OPTION -# This option is used by the nsca daemon to determine when client -# data is too old to be valid. Keeping this value as small as -# possible is recommended, as it helps prevent the possibility of -# "replay" attacks. This value needs to be at least as long as -# the time it takes your clients to send their data to the server. -# Values are in seconds. The max packet age cannot exceed 15 -# minutes (900 seconds). If this variable is set to zero (0), no -# packets will be rejected based on their age. - -max_packet_age=30 - - - -# DECRYPTION PASSWORD -# This is the password/passphrase that should be used to descrypt the -# incoming packets. Note that all clients must encrypt the packets -# they send using the same password! -# IMPORTANT: You don't want all the users on this system to be able -# to read the password you specify here, so make sure to set -# restrictive permissions on this config file! - -password=oix9iadeeh4kaeviha4naiReGhahze - - - -# DECRYPTION METHOD -# This option determines the method by which the nsca daemon will -# decrypt the packets it receives from the clients. The decryption -# method you choose will be a balance between security and performance, -# as strong encryption methods consume more processor resources. -# You should evaluate your security needs when choosing a decryption -# method. -# -# Note: The decryption method you specify here must match the -# encryption method the nsca clients use (as specified in -# the send_nsca.cfg file)!! -# Values: -# -# 0 = None (Do NOT use this option) -# 1 = Simple XOR (No security, just obfuscation, but very fast) -# -# 2 = DES -# 3 = 3DES (Triple DES) -# 4 = CAST-128 -# 5 = CAST-256 -# 6 = xTEA -# 7 = 3WAY -# 8 = BLOWFISH -# 9 = TWOFISH -# 10 = LOKI97 -# 11 = RC2 -# 12 = ARCFOUR -# -# 14 = RIJNDAEL-128 -# 15 = RIJNDAEL-192 -# 16 = RIJNDAEL-256 -# -# 19 = WAKE -# 20 = SERPENT -# -# 22 = ENIGMA (Unix crypt) -# 23 = GOST -# 24 = SAFER64 -# 25 = SAFER128 -# 26 = SAFER+ -# - -decryption_method=1 - diff --git a/roles/nagios/server/files/nagios-external/private/resource.cfg b/roles/nagios/server/files/nagios-external/private/resource.cfg deleted file mode 100644 index 88fe4cf852..0000000000 --- a/roles/nagios/server/files/nagios-external/private/resource.cfg +++ /dev/null @@ -1,33 +0,0 @@ -########################################################################### -# -# RESOURCE.CFG - Sample Resource File for Nagios -# -# Last Modified: 09-10-2003 -# -# You can define $USERx$ macros in this file, which can in turn be used -# in command definitions in your host config file(s). $USERx$ macros are -# useful for storing sensitive information such as usernames, passwords, -# etc. They are also handy for specifying the path to plugins and -# event handlers - if you decide to move the plugins or event handlers to -# a different directory in the future, you can just update one or two -# $USERx$ macros, instead of modifying a lot of command definitions. -# -# The CGIs will not attempt to read the contents of resource files, so -# you can set restrictive permissions (600 or 660) on them. -# -# Nagios supports up to 32 $USERx$ macros ($USER1$ through $USER32$) -# -# Resource files may also be used to store configuration directives for -# external data sources like MySQL... -# -########################################################################### - -# Sets $USER1$ to be the path to the plugins -$USER1$=/usr/lib64/nagios/plugins - -# Sets $USER2$ to be the path to event handlers -#$USER2$=/usr/lib/nagios/plugins/eventhandlers - -# Store some usernames and passwords (hidden from the CGIs) -#$USER3$=someuser -#$USER4$=somepassword diff --git a/roles/nagios/server/files/nagios-external/private/resource.cfg-sample b/roles/nagios/server/files/nagios-external/private/resource.cfg-sample deleted file mode 100644 index 167efeffbc..0000000000 --- a/roles/nagios/server/files/nagios-external/private/resource.cfg-sample +++ /dev/null @@ -1,34 +0,0 @@ -########################################################################### -# -# RESOURCE.CFG - Sample Resource File for Nagios 2.7 -# -# Last Modified: 09-10-2003 -# -# You can define $USERx$ macros in this file, which can in turn be used -# in command definitions in your host config file(s). $USERx$ macros are -# useful for storing sensitive information such as usernames, passwords, -# etc. They are also handy for specifying the path to plugins and -# event handlers - if you decide to move the plugins or event handlers to -# a different directory in the future, you can just update one or two -# $USERx$ macros, instead of modifying a lot of command definitions. -# -# The CGIs will not attempt to read the contents of resource files, so -# you can set restrictive permissions (600 or 660) on them. -# -# Nagios supports up to 32 $USERx$ macros ($USER1$ through $USER32$) -# -# Resource files may also be used to store configuration directives for -# external data sources like MySQL... -# -########################################################################### - -# Sets $USER1$ to be the path to the plugins -$USER1$=/usr/lib64/nagios/plugins - -# Sets $USER2$ to be the path to event handlers -#$USER2$=/usr/lib/nagios/plugins/eventhandlers - -# Store some usernames and passwords (hidden from the CGIs) -#$USER3$=someuser -#$USER4$=somepassword - diff --git a/roles/nagios/server/files/nagios-external/send_nsca.cfg b/roles/nagios/server/files/nagios-external/send_nsca.cfg deleted file mode 100644 index 30966d38ca..0000000000 --- a/roles/nagios/server/files/nagios-external/send_nsca.cfg +++ /dev/null @@ -1,63 +0,0 @@ -#################################################### -# Sample NSCA Client Config File -# Written by: Ethan Galstad (nagios@nagios.org) -# -# Last Modified: 02-21-2002 -#################################################### - - -# ENCRYPTION PASSWORD -# This is the password/passphrase that should be used to encrypt the -# outgoing packets. Note that the nsca daemon must use the same -# password when decrypting the packet! -# IMPORTANT: You don't want all the users on this system to be able -# to read the password you specify here, so make sure to set -# restrictive permissions on this config file! - -password=oix9iadeeh4kaeviha4naiReGhahze - - - -# ENCRYPTION METHOD -# This option determines the method by which the send_nsca client will -# encrypt the packets it sends to the nsca daemon. The encryption -# method you choose will be a balance between security and performance, -# as strong encryption methods consume more processor resources. -# You should evaluate your security needs when choosing an encryption -# method. -# -# Note: The encryption method you specify here must match the -# decryption method the nsca daemon uses (as specified in -# the nsca.cfg file)!! -# Values: -# 0 = None (Do NOT use this option) -# 1 = Simple XOR (No security, just obfuscation, but very fast) -# -# 2 = DES -# 3 = 3DES (Triple DES) -# 4 = CAST-128 -# 5 = CAST-256 -# 6 = xTEA -# 7 = 3WAY -# 8 = BLOWFISH -# 9 = TWOFISH -# 10 = LOKI97 -# 11 = RC2 -# 12 = ARCFOUR -# -# 14 = RIJNDAEL-128 -# 15 = RIJNDAEL-192 -# 16 = RIJNDAEL-256 -# -# 19 = WAKE -# 20 = SERPENT -# -# 22 = ENIGMA (Unix crypt) -# 23 = GOST -# 24 = SAFER64 -# 25 = SAFER128 -# 26 = SAFER+ -# - -encryption_method=1 - diff --git a/roles/nagios/server/files/nagios-external/servicedeps/websitedeps.cfg b/roles/nagios/server/files/nagios-external/servicedeps/websitedeps.cfg deleted file mode 100644 index a526b17710..0000000000 --- a/roles/nagios/server/files/nagios-external/servicedeps/websitedeps.cfg +++ /dev/null @@ -1,90 +0,0 @@ - -define servicedependency { - host_name proxy03.fedoraproject.org - service_description https - dependent_host_name proxy03.fedoraproject.org - dependent_service_description bodhi, pkgdb, elections, accounts, mirrors.fedoraproject.org - mirrorlist, mirrors.fedoraproject.org - publiclist, docs.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 209.132.181.16-phx2 - service_description https - dependent_host_name 209.132.181.16-phx2 - dependent_service_description bodhi, pkgdb, elections, docs.fedoraproject.org, mirrors.fedoraproject.org - mirrorlist, mirrors.fedoraproject.org - publiclist, start.fedoraproject.org, accounts, fedoraproject.org, fedoraproject.org - wiki - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 152.19.134.142-ibiblio - service_description https - dependent_host_name 152.19.134.142-ibiblio - dependent_service_description bodhi, pkgdb, elections, accounts, mirrors.fedoraproject.org - mirrorlist, mirrors.fedoraproject.org - publiclist, docs.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 152.19.134.198-ibiblio - service_description https - dependent_host_name 152.19.134.198-ibiblio - dependent_service_description bodhi, pkgdb, elections, accounts, mirrors.fedoraproject.org - mirrorlist, mirrors.fedoraproject.org - publiclist, docs.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 85.236.55.6-internetx - service_description https - dependent_host_name 85.236.55.6-internetx - dependent_service_description bodhi, pkgdb, elections, accounts, mirrors.fedoraproject.org - mirrorlist, mirrors.fedoraproject.org - publiclist, docs.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 67.203.2.67-coloamerica - service_description https - dependent_host_name 67.203.2.67-coloamerica - dependent_service_description bodhi, pkgdb, elections, docs.fedoraproject.org, mirrors.fedoraproject.org - mirrorlist, mirrors.fedoraproject.org - publiclist, start.fedoraproject.org, accounts, fedoraproject.org, fedoraproject.org - wiki - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 66.35.62.162-tummy - service_description http - dependent_host_name 66.35.62.162-tummy - dependent_service_description fedoraproject.org, fedoraproject.org - wiki, start.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 152.19.134.142-ibiblio - service_description http - dependent_host_name 152.19.134.142-ibiblio - dependent_service_description fedoraproject.org, fedoraproject.org - wiki, start.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 152.19.134.198-ibiblio - service_description http - dependent_host_name 152.19.134.198-ibiblio - dependent_service_description fedoraproject.org, fedoraproject.org - wiki, start.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name 85.236.55.6-internetx - service_description http - dependent_host_name 85.236.55.6-internetx - dependent_service_description fedoraproject.org, fedoraproject.org - wiki, start.fedoraproject.org - notification_failure_criteria w,c - execution_failure_criteria w,c -} diff --git a/roles/nagios/server/files/nagios-external/services/dns.cfg b/roles/nagios/server/files/nagios-external/services/dns.cfg deleted file mode 100644 index 0f1eb14b8d..0000000000 --- a/roles/nagios/server/files/nagios-external/services/dns.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define service { - hostgroup_name dnsservers - service_description DNS: fp.o - check_command check_dns_fpo - use criticaltemplate -} diff --git a/roles/nagios/server/files/nagios-external/services/nagios.cfg b/roles/nagios/server/files/nagios-external/services/nagios.cfg deleted file mode 100644 index 4ff8be5dd0..0000000000 --- a/roles/nagios/server/files/nagios-external/services/nagios.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define service { - host_name noc01 - service_description Check Nagios - check_command check_by_nrpe!check_nagios - use criticaltemplate -} - diff --git a/roles/nagios/server/files/nagios-external/services/templates.cfg b/roles/nagios/server/files/nagios-external/services/templates.cfg deleted file mode 100644 index f5efca2714..0000000000 --- a/roles/nagios/server/files/nagios-external/services/templates.cfg +++ /dev/null @@ -1,81 +0,0 @@ -define service { - name criticaltemplate - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - check_period 24x7 - notification_interval 10 - notification_period 24x7 - notification_options w,u,c,r - contact_groups fedora-sysadmin-ircbot - - register 0 -} - - -define service { - name defaulttemplate - max_check_attempts 3 - normal_check_interval 10 - retry_check_interval 1 - check_period 24x7 - notification_interval 10 - notification_period 24x7 - notification_options w,u,c,r - contact_groups fedora-sysadmin-ircbot - - register 0 -} - -define service { - name disktemplate - max_check_attempts 3 - normal_check_interval 30 - retry_check_interval 1 - check_period 24x7 - notification_interval 10 - notification_period 24x7 - notification_options w,u,c,r - contact_groups fedora-sysadmin-ircbot - - register 0 -} - -define service { - name lighttemplate - max_check_attempts 3 - normal_check_interval 480 - retry_check_interval 5 - check_period 24x7 - notification_interval 10 - notification_period 24x7 - notification_options w,u,c,r - contact_groups fedora-sysadmin-ircbot - - register 0 -} - -define service { - name websitetemplate - max_check_attempts 3 - normal_check_interval 5 - retry_check_interval 1 - check_period 24x7 - notification_interval 10 - notification_period 24x7 - notification_options w,u,c,r - contact_groups fedora-sysadmin-ircbot - - register 0 -} - -define service { - use defaulttemplate - name passivetemplate - active_checks_enabled 0 - passive_checks_enabled 1 - check_command check_dummy!0 - check_period 24x7 - check_freshness 0 - register 0 -} diff --git a/roles/nagios/server/files/nagios-external/services/websites.cfg b/roles/nagios/server/files/nagios-external/services/websites.cfg deleted file mode 100644 index 4413b1eb8a..0000000000 --- a/roles/nagios/server/files/nagios-external/services/websites.cfg +++ /dev/null @@ -1,192 +0,0 @@ -# -# These ip's are for https. Some sites have seperate ip's for http. -# - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description https - max_check_attempts 2 - normal_check_interval 2 - check_command check_https - use websitetemplate -} - - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description bodhi - max_check_attempts 8 - check_command check_website_ssl!bodhi.fedoraproject.org!/!Fedora - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description pkgdb - check_command check_website_ssl!admin.fedoraproject.org!/pkgdb/collections/!EPEL - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description packages - max_check_attempts 8 - check_command check_website_ssl!apps.fedoraproject.org!/packages/!Packages - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description elections - check_command check_website_ssl!admin.fedoraproject.org!/voting/!Last 5 elections - use websitetemplate -} - -define service { - host_name koji-phx2 - service_description koji - check_command check_website_ssl!koji.fedoraproject.org!/koji/buildtargets!infra - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description accounts - check_command check_website_ssl!admin.fedoraproject.org!/accounts/help/get_help/user_telephone!emergency - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description ask - check_command check_website_ssl!ask.fedoraproject.org!/en/questions/!RSS - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description blockerbugs - check_command check_website_ssl!qa.fedoraproject.org!/blockerbugs/!Currently Active Milestones - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description fedocal - check_command check_website_ssl!apps.fedoraproject.org!/calendar/list/infrastructure-outages/!Description - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description taskotron_taskmaster - max_check_attempts 8 - check_command check_website_ssl!taskotron.fedoraproject.org!/taskmaster/ - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description taskotron_resultsdb - max_check_attempts 8 - check_command check_website_ssl!taskotron.fedoraproject.org!/resultsdb/ - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description taskotron_resultsdb_api - max_check_attempts 8 - check_command check_website_ssl!taskotron.fedoraproject.org!/resultsdb_api/ - use websitetemplate -} - -# -# These are http checks, using http hosts -# - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, 66.35.62.162-tummy, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description http - max_check_attempts 2 - normal_check_interval 2 - check_command check_http - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, 66.35.62.162-tummy, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description fedoraproject.org - check_command check_website_ssl!fedoraproject.org!/!getfedora.org - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, 66.35.62.162-tummy, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description fedoraproject.org - wiki - check_command check_website!fedoraproject.org!/wiki/Special:Statistics!Active users - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description docs.fedoraproject.org - check_command check_website_ssl!docs.fedoraproject.org!/en-US/index.html!Fedora Documentation - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description mirrors.fedoraproject.org - mirrorlist - check_command check_website!mirrors.fedoraproject.org!/mirrorlist?repo=rawhide&arch=x86_64&country=global!development - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, proxy03.fedoraproject.org, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description mirrors.fedoraproject.org - publiclist - check_command check_website_publiclist_ssl!admin.fedoraproject.org!/mirrormanager/api/mirroradmins/?name=dl.fedoraproject.org!admins - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, 66.35.62.162-tummy, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description start.fedoraproject.org - check_command check_website_ssl!start.fedoraproject.org!/!The Fedora Project is maintained - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, 66.35.62.162-tummy, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description paste.fedoraproject.org - check_command check_website_ssl!paste.fedoraproject.org!/!UserRegisterInterfaceURI - use websitetemplate -} - -define service { - host_name 209.132.181.16-phx2, 85.236.55.6-internetx, 66.35.62.162-tummy, 152.19.134.142-ibiblio, 152.19.134.198-ibiblio, proxy06.fedoraproject.org, proxy09.fedoraproject.org, 67.203.2.67-coloamerica, 209.132.181.15-phx2, 8.43.85.67-rdu2 - service_description mbs.fedoraproject.org - check_command check_website_ssl!mbs.fedoraproject.org!/module-build-service/1/module-builds/!"items" - use websitetemplate -} - -define service { - host_name 209.132.183.81-phx2 - service_description pagure.io - frontpage - check_command check_remote_website_ssl!pagure.io!/!Projects - use websitetemplate -} - -define service { - host_name 209.132.183.81-phx2 - service_description whatcanidoforfedora.org - asknot-ng - check_command check_remote_website!whatcanidoforfedora.org!/en/!What - use websitetemplate -} - -define service { - host_name 152.19.134.199-people02 - service_description planet - check_command check_website!fedoraplanet.org!/!Add Blog - use websitetemplate -} diff --git a/roles/nagios/server/files/nagios-external/timeperiods.cfg b/roles/nagios/server/files/nagios-external/timeperiods.cfg deleted file mode 100644 index e23469fab5..0000000000 --- a/roles/nagios/server/files/nagios-external/timeperiods.cfg +++ /dev/null @@ -1,29 +0,0 @@ -define timeperiod{ - timeperiod_name 24x7 - alias 24 Hours A Day, 7 Days A Week - sunday 00:00-24:00 - monday 00:00-24:00 - tuesday 00:00-24:00 - wednesday 00:00-24:00 - thursday 00:00-24:00 - friday 00:00-24:00 - saturday 00:00-24:00 -} -define timeperiod{ - timeperiod_name 16x7 - alias 15 Hours a day, 7 days a week - sunday 00:00-04:00,13:00-24:00 - monday 00:00-04:00,13:00-24:00 - tuesday 00:00-04:00,13:00-24:00 - wednesday 00:00-04:00,13:00-24:00 - thursday 00:00-04:00,13:00-24:00 - friday 00:00-04:00,13:00-24:00 - saturday 00:00-04:00,13:00-24:00 - } - -# Members of sysadmin-main already get nagios messages -define timeperiod{ - timeperiod_name never - alias Never - } - diff --git a/roles/nagios/server/files/nagios/cgi.cfg b/roles/nagios/server/files/nagios/cgi.cfg deleted file mode 100644 index 670215486b..0000000000 --- a/roles/nagios/server/files/nagios/cgi.cfg +++ /dev/null @@ -1,397 +0,0 @@ -################################################################# -# -# CGI.CFG - Sample CGI Configuration File for Nagios 4.2.4 -# -# Last Modified: 05-05-2005 -# -################################################################# - - -# MAIN CONFIGURATION FILE -# This tells the CGIs where to find your main configuration file. -# The CGIs will read the main and host config files for any other -# data they might need. - -main_config_file=/etc/nagios/nagios.cfg - - - -# PHYSICAL HTML PATH -# This is the path where the HTML files for Nagios reside. This -# value is used to locate the logo images needed by the statusmap -# and statuswrl CGIs. - -physical_html_path=/usr/share/nagios/html - - - -# URL HTML PATH -# This is the path portion of the URL that corresponds to the -# physical location of the Nagios HTML files (as defined above). -# This value is used by the CGIs to locate the online documentation -# and graphics. If you access the Nagios pages with an URL like -# http://www.myhost.com/nagios, this value should be '/nagios' -# (without the quotes). - -url_html_path=/nagios - - - -# CONTEXT-SENSITIVE HELP -# This option determines whether or not a context-sensitive -# help icon will be displayed for most of the CGIs. -# Values: 0 = disables context-sensitive help -# 1 = enables context-sensitive help - -show_context_help=0 - - - -# PENDING STATES OPTION -# This option determines what states should be displayed in the web -# interface for hosts/services that have not yet been checked. -# Values: 0 = leave hosts/services that have not been check yet in their original state -# 1 = mark hosts/services that have not been checked yet as PENDING - -use_pending_states=1 - - - - -# AUTHENTICATION USAGE -# This option controls whether or not the CGIs will use any -# authentication when displaying host and service information, as -# well as committing commands to Nagios for processing. -# -# Read the HTML documentation to learn how the authorization works! -# -# NOTE: It is a really *bad* idea to disable authorization, unless -# you plan on removing the command CGI (cmd.cgi)! Failure to do -# so will leave you wide open to kiddies messing with Nagios and -# possibly hitting you with a denial of service attack by filling up -# your drive by continuously writing to your command file! -# -# Setting this value to 0 will cause the CGIs to *not* use -# authentication (bad idea), while any other value will make them -# use the authentication functions (the default). - -use_authentication=1 - - - - -# x509 CERT AUTHENTICATION -# When enabled, this option allows you to use x509 cert (SSL) -# authentication in the CGIs. This is an advanced option and should -# not be enabled unless you know what you're doing. - -use_ssl_authentication=0 - - - - -# DEFAULT USER -# Setting this variable will define a default user name that can -# access pages without authentication. This allows people within a -# secure domain (i.e., behind a firewall) to see the current status -# without authenticating. You may want to use this to avoid basic -# authentication if you are not using a secure server since basic -# authentication transmits passwords in the clear. -# -# Important: Do not define a default username unless you are -# running a secure web server and are sure that everyone who has -# access to the CGIs has been authenticated in some manner! If you -# define this variable, anyone who has not authenticated to the web -# server will inherit all rights you assign to this user! - -#default_user_name=guest - - - -# SYSTEM/PROCESS INFORMATION ACCESS -# This option is a comma-delimited list of all usernames that -# have access to viewing the Nagios process information as -# provided by the Extended Information CGI (extinfo.cgi). By -# default, *no one* has access to this unless you choose to -# not use authorization. You may use an asterisk (*) to -# authorize any user who has authenticated to the web server. - -#authorized_for_system_information=nagiosadmin -authorized_for_system_information=* - - - -# CONFIGURATION INFORMATION ACCESS -# This option is a comma-delimited list of all usernames that -# can view ALL configuration information (hosts, commands, etc). -# By default, users can only view configuration information -# for the hosts and services they are contacts for. You may use -# an asterisk (*) to authorize any user who has authenticated -# to the web server. - -#authorized_for_configuration_information=nagiosadmin -authorized_for_configuration_information=* - - - -# SYSTEM/PROCESS COMMAND ACCESS -# This option is a comma-delimited list of all usernames that -# can issue shutdown and restart commands to Nagios via the -# command CGI (cmd.cgi). Users in this list can also change -# the program mode to active or standby. By default, *no one* -# has access to this unless you choose to not use authorization. -# You may use an asterisk (*) to authorize any user who has -# authenticated to the web server. - -#authorized_for_system_commands=nagiosadmin -authorized_for_system_commands=athmane,ausil,averi,badone,codeblock,hvivani,ianweller,jspaleta,jstanley,kevin,lbazan,lmacken,maxamillio,mmahut,mmcgrath,nb,pfrields,puiterwijk,rafaelgomes,ralph,sijis,smooge,susmit,tibbs,tmz,wsterling,mdomsch,notting,ricky,toshio,spot,mahrud,karsten,parasense,pingou,tflink,mizdebsk,msimacek,stickster - - - -# GLOBAL HOST/SERVICE VIEW ACCESS -# These two options are comma-delimited lists of all usernames that -# can view information for all hosts and services that are being -# monitored. By default, users can only view information -# for hosts or services that they are contacts for (unless you -# you choose to not use authorization). You may use an asterisk (*) -# to authorize any user who has authenticated to the web server. - - -#authorized_for_all_services=nagiosadmin -#authorized_for_all_hosts=nagiosadmin -authorized_for_all_services=* -authorized_for_all_hosts=* - - -# GLOBAL HOST/SERVICE COMMAND ACCESS -# These two options are comma-delimited lists of all usernames that -# can issue host or service related commands via the command -# CGI (cmd.cgi) for all hosts and services that are being monitored. -# By default, users can only issue commands for hosts or services -# that they are contacts for (unless you you choose to not use -# authorization). You may use an asterisk (*) to authorize any -# user who has authenticated to the web server. - -#authorized_for_all_service_commands=nagiosadmin -#authorized_for_all_host_commands=nagiosadmin -authorized_for_all_service_commands=athmane,ausil,averi,badone,codeblock,dwa,hvivani,ianweller,jspaleta,jstanley,kevin,lbazan,lmacken,maxamillio,mmahut,mmcgrath,nb,pfrields,puiterwijk,rafaelgomes,ralph,sijis,smooge,susmit,tibbs,tmz,wsterling,mdomsch,notting,ricky,toshio,spot,mahrud,dwa,karsten,pingou,tflink,mizdebsk,msimacek,stickster - -authorized_for_all_host_commands=athmane,ausil,averi,badone,codeblock,dwa,hvivani,ianweller,jspaleta,jstanley,kevin,lbazan,lmacken,maxamillio,mmahut,mmcgrath,nb,pfrields,puiterwijk,rafaelgomes,ralph,sijis,smooge,susmit,tibbs,tmz,wsterling,mdomsch,notting,ricky,toshio,spot,mahrud,dwa,karsten,pingou,tflink,mizdebsk,msimacek,stickster - - - - -# STATUSMAP BACKGROUND IMAGE -# This option allows you to specify an image to be used as a -# background in the statusmap CGI. It is assumed that the image -# resides in the HTML images path (i.e. /usr/local/nagios/share/images). -# This path is automatically determined by appending "/images" -# to the path specified by the 'physical_html_path' directive. -# Note: The image file may be in GIF, PNG, JPEG, or GD2 format. -# However, I recommend that you convert your image to GD2 format -# (uncompressed) but ONLY IF YOU WILL USE THE LEGACY MAP EXCLUSIVELY, -# as this will cause less CPU load when the CGI generates the image. - -#statusmap_background_image=smbackground.gd2 - - - - -# STATUSMAP TRANSPARENCY INDEX COLOR -# These options set the r,g,b values of the background color used the statusmap CGI, -# so normal browsers that can't show real png transparency set the desired color as -# a background color instead (to make it look pretty). -# Defaults to white: (R,G,B) = (255,255,255). - -#color_transparency_index_r=255 -#color_transparency_index_g=255 -#color_transparency_index_b=255 - - - - -# DEFAULT STATUSMAP LAYOUT METHOD -# This option allows you to specify the default layout method -# the statusmap CGI should use for drawing hosts. If you do -# not use this option, the default for the legacy map is to use -# user-defined coordinates and the default for the new map is "6" -# (Circular Balloon). -# Valid options for the legacy map are as follows: -# 0 = User-defined coordinates -# 1 = Depth layers -# 2 = Collapsed tree -# 3 = Balanced tree -# 4 = Circular -# 5 = Circular (Marked Up) -# Valid options for the new map are as follows: -# 0 = User-defined coordinates -# 1 = Depth Layers (Horizontal) -# 2 = Collapsed tree (Horizontal) -# 3 = Balanced tree (Horizontal) -# 4 = DON'T USE -# 5 = Circular Markup -# 6 = Circular Balloon -# 7 = Balanced tree (Vertical) -# 8 = Collapsed tree (Vertical) -# 9 = Depth Layers (Vertical) -# 10 = Force Map - -default_statusmap_layout=5 - - - -# DEFAULT STATUSWRL LAYOUT METHOD -# This option allows you to specify the default layout method -# the statuswrl (VRML) CGI should use for drawing hosts. If you -# do not use this option, the default is to use user-defined -# coordinates. Valid options are as follows: -# 0 = User-defined coordinates -# 2 = Collapsed tree -# 3 = Balanced tree -# 4 = Circular - -default_statuswrl_layout=4 - - - -# STATUSWRL INCLUDE -# This option allows you to include your own objects in the -# generated VRML world. It is assumed that the file -# resides in the HTML path (i.e. /usr/local/nagios/share). - -#statuswrl_include=myworld.wrl - - - -# PING SYNTAX -# This option determines what syntax should be used when -# attempting to ping a host from the WAP interface (using -# the statuswml CGI. You must include the full path to -# the ping binary, along with all required options. The -# $HOSTADDRESS$ macro is substituted with the address of -# the host before the command is executed. -# Please note that the syntax for the ping binary is -# notorious for being different on virtually ever *NIX -# OS and distribution, so you may have to tweak this to -# work on your system. - -ping_syntax=/bin/ping -n -U -c 5 $HOSTADDRESS$ - - - -# REFRESH RATE -# This option allows you to specify the refresh rate in seconds -# of various CGIs (status, statusmap, extinfo, and outages). - -refresh_rate=90 - -# DEFAULT PAGE LIMIT -# This option allows you to specify the default number of results -# displayed on the status.cgi. This number can be adjusted from -# within the UI after the initial page load. Setting this to 0 -# will show all results. - -result_limit=100 - - -# ESCAPE HTML TAGS -# This option determines whether HTML tags in host and service -# status output is escaped in the web interface. If enabled, -# your plugin output will not be able to contain clickable links. - -escape_html_tags=1 - - - - -# SOUND OPTIONS -# These options allow you to specify an optional audio file -# that should be played in your browser window when there are -# problems on the network. The audio files are used only in -# the status CGI. Only the sound for the most critical problem -# will be played. Order of importance (higher to lower) is as -# follows: unreachable hosts, down hosts, critical services, -# warning services, and unknown services. If there are no -# visible problems, the sound file optionally specified by -# 'normal_sound' variable will be played. -# -# -# = -# -# Note: All audio files must be placed in the /media subdirectory -# under the HTML path (i.e. /usr/local/nagios/share/media/). - -#host_unreachable_sound=hostdown.wav -#host_down_sound=hostdown.wav -#service_critical_sound=critical.wav -#service_warning_sound=warning.wav -#service_unknown_sound=warning.wav -#normal_sound=noproblem.wav - - - -# URL TARGET FRAMES -# These options determine the target frames in which notes and -# action URLs will open. - -action_url_target=_blank -notes_url_target=_blank - - - - -# LOCK AUTHOR NAMES OPTION -# This option determines whether users can change the author name -# when submitting comments, scheduling downtime. If disabled, the -# author names will be locked into their contact name, as defined in Nagios. -# Values: 0 = allow editing author names -# 1 = lock author names (disallow editing) - -lock_author_names=1 - - - - -# SPLUNK INTEGRATION OPTIONS -# These options allow you to enable integration with Splunk -# in the web interface. If enabled, you'll be presented with -# "Splunk It" links in various places in the CGIs (log file, -# alert history, host/service detail, etc). Useful if you're -# trying to research why a particular problem occurred. -# For more information on Splunk, visit http://www.splunk.com/ - -# This option determines whether the Splunk integration is enabled -# Values: 0 = disable Splunk integration -# 1 = enable Splunk integration - -#enable_splunk_integration=1 - - -# This option should be the URL used to access your instance of Splunk - -#splunk_url=http://127.0.0.1:8000/ - - - - -# NAVIGATION BAR SEARCH OPTIONS -# The following options allow to configure the navbar search. Default -# is to search for hostnames. With enabled navbar_search_for_addresses, -# the navbar search queries IP addresses as well. It's also possible -# to enable search for aliases by setting navbar_search_for_aliases=1. - -navbar_search_for_addresses=1 -navbar_search_for_aliases=1 - - - - - -# DEFAULTS FOR CHECKBOXES FOR ACKNOWLEDGEMENTS -# Enabling ack_no_sticky will default the "Sticky Acknowledgement" to -# be unchecked. -# Enabling ack_no_send will default the "Send Notification" to -# be unchecked. - -#ack_no_sticky=0 -#ack_no_send=0 diff --git a/roles/nagios/server/files/nagios/contactgroups/build-sysadmin-email.cfg b/roles/nagios/server/files/nagios/contactgroups/build-sysadmin-email.cfg deleted file mode 100644 index 92f56c5750..0000000000 --- a/roles/nagios/server/files/nagios/contactgroups/build-sysadmin-email.cfg +++ /dev/null @@ -1,5 +0,0 @@ -#define contactgroup{ -# contactgroup_name build-sysadmin-email -# alias Build Sysadmin Email Contacts -# members kevin,aditya -# } diff --git a/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-email.cfg b/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-email.cfg deleted file mode 100644 index bc271b3e2d..0000000000 --- a/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-email.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup{ - contactgroup_name fedora-sysadmin-email - alias Fedora Sysadmin Email Contacts - members mmcgrath,ausil,admin,ricky,jcollie,smooge,nb,rigeld2,codeblock,hvivani,kevin,puiterwijkp - } diff --git a/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-ircbot.cfg b/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-ircbot.cfg deleted file mode 100644 index 5d8fbeaa92..0000000000 --- a/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-ircbot.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup{ - contactgroup_name fedora-sysadmin-ircbot - alias Fedora Sysadmin irc Contacts - members ircbot,fedmsg - } diff --git a/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-pager.cfg b/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-pager.cfg deleted file mode 100644 index 681a37ef9a..0000000000 --- a/roles/nagios/server/files/nagios/contactgroups/fedora-sysadmin-pager.cfg +++ /dev/null @@ -1,10 +0,0 @@ -define contactgroup{ - contactgroup_name fedora-sysadmin-pager - alias Fedora Sysadmin Pager Contacts - members mmcgrathp,rickyp,smoogep,kevinp,puiterwijkp -} -define contactgroup{ - contactgroup_name fedora-sysadmin-emergency - alias Fedora Sysadmin Pager Contacts - members mmcgrath-emergency,ricky-emergency,smooge-emergency,kevin-emergency,puiterwijk-emergency -} diff --git a/roles/nagios/server/files/nagios/contactgroups/ppc-secondary-email.cfg b/roles/nagios/server/files/nagios/contactgroups/ppc-secondary-email.cfg deleted file mode 100644 index f0e11858b1..0000000000 --- a/roles/nagios/server/files/nagios/contactgroups/ppc-secondary-email.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup { - contactgroup_name ppc-secondary-email - alias Fedora PPC secondary arch Email Contacts - members kevin,parasense,karsten -} diff --git a/roles/nagios/server/files/nagios/contactgroups/retrace.cfg b/roles/nagios/server/files/nagios/contactgroups/retrace.cfg deleted file mode 100644 index 8f3310b5dc..0000000000 --- a/roles/nagios/server/files/nagios/contactgroups/retrace.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup { - contactgroup_name retrace-email - alias Fedora Retrace server Email Contacts - members kevin,mtoman -} diff --git a/roles/nagios/server/files/nagios/contactgroups/sysadmin-qa-email.cfg b/roles/nagios/server/files/nagios/contactgroups/sysadmin-qa-email.cfg deleted file mode 100644 index e25dfe84fa..0000000000 --- a/roles/nagios/server/files/nagios/contactgroups/sysadmin-qa-email.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define contactgroup { - contactgroup_name sysadmin-qa-email - alias Fedora SysAdmin QA Email Contacts - members sysadmin-qa -} diff --git a/roles/nagios/server/files/nagios/contacts/aditya.cfg b/roles/nagios/server/files/nagios/contacts/aditya.cfg deleted file mode 100644 index d35dbb7b86..0000000000 --- a/roles/nagios/server/files/nagios/contacts/aditya.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name aditya - alias Aditya Patawari - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email adimania@fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/contacts/admin.cfg b/roles/nagios/server/files/nagios/contacts/admin.cfg deleted file mode 100644 index fabbb5e3f0..0000000000 --- a/roles/nagios/server/files/nagios/contacts/admin.cfg +++ /dev/null @@ -1,13 +0,0 @@ -define contact{ - contact_name admin - alias Fedora Sysadmins - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email sysadmin-members@fedoraproject.org - } - - diff --git a/roles/nagios/server/files/nagios/contacts/ausil.cfg b/roles/nagios/server/files/nagios/contacts/ausil.cfg deleted file mode 100644 index f8f5e6c8a9..0000000000 --- a/roles/nagios/server/files/nagios/contacts/ausil.cfg +++ /dev/null @@ -1,16 +0,0 @@ -define contact{ - contact_name ausil - alias Dennis Gilmore - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - #service_notification_commands notify-by-epager - #host_notification_commands host-notify-by-epager - email ausil@fedoraproject.org - #pager 3098682442@tmomail.net - #email 3098682442@tmomail.net -} - diff --git a/roles/nagios/server/files/nagios/contacts/codeblock.cfg b/roles/nagios/server/files/nagios/contacts/codeblock.cfg deleted file mode 100644 index 3e6b003f7c..0000000000 --- a/roles/nagios/server/files/nagios/contacts/codeblock.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name codeblock - alias Ricky Elrod - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email codeblock@elrod.me -} diff --git a/roles/nagios/server/files/nagios/contacts/fedmsg.cfg b/roles/nagios/server/files/nagios/contacts/fedmsg.cfg deleted file mode 100644 index cd577aa696..0000000000 --- a/roles/nagios/server/files/nagios/contacts/fedmsg.cfg +++ /dev/null @@ -1,10 +0,0 @@ -define contact{ - contact_name fedmsg - alias BUS - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-fedmsg - host_notification_commands host-notify-by-fedmsg -} diff --git a/roles/nagios/server/files/nagios/contacts/hvivani.cfg b/roles/nagios/server/files/nagios/contacts/hvivani.cfg deleted file mode 100644 index 2686f59109..0000000000 --- a/roles/nagios/server/files/nagios/contacts/hvivani.cfg +++ /dev/null @@ -1,12 +0,0 @@ -define contact{ - contact_name hvivani - alias Hernan Vivani - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email hernan@vivani.com.ar -} - diff --git a/roles/nagios/server/files/nagios/contacts/ircbot.cfg b/roles/nagios/server/files/nagios/contacts/ircbot.cfg deleted file mode 100644 index 9f3d4fee2e..0000000000 --- a/roles/nagios/server/files/nagios/contacts/ircbot.cfg +++ /dev/null @@ -1,10 +0,0 @@ -define contact{ - contact_name ircbot - alias ZOD - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-ircbot - host_notification_commands host-notify-by-ircbot -} diff --git a/roles/nagios/server/files/nagios/contacts/jcollie.cfg b/roles/nagios/server/files/nagios/contacts/jcollie.cfg deleted file mode 100644 index 2fce9d252f..0000000000 --- a/roles/nagios/server/files/nagios/contacts/jcollie.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name jcollie - alias Jeffrey Ollie - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email jeff@ocjtech.us -} diff --git a/roles/nagios/server/files/nagios/contacts/jmtaylor.cfg b/roles/nagios/server/files/nagios/contacts/jmtaylor.cfg deleted file mode 100644 index 7915a565dc..0000000000 --- a/roles/nagios/server/files/nagios/contacts/jmtaylor.cfg +++ /dev/null @@ -1,11 +0,0 @@ -#define contact{ -# contact_name jmtaylor -# alias Jason Taylor -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-email -# host_notification_commands host-notify-by-email -# email jmtaylor90@gmail.com -#} diff --git a/roles/nagios/server/files/nagios/contacts/jstanley.cfg b/roles/nagios/server/files/nagios/contacts/jstanley.cfg deleted file mode 100644 index b32dd9902d..0000000000 --- a/roles/nagios/server/files/nagios/contacts/jstanley.cfg +++ /dev/null @@ -1,37 +0,0 @@ -define contact{ - contact_name jstanley - alias Jon Stanley - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email jonstanley@gmail.com -} - -define contact{ - contact_name jstanley-emergency - alias Jon Stanley - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 9178159801@vtext.com - pager 9178159801@vtext.com -} - -define contact{ - contact_name jstanleyp - alias Jon Stanley - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 9178159801@vtext.com - pager 9178159801@vtext.com -} diff --git a/roles/nagios/server/files/nagios/contacts/karsten.cfg b/roles/nagios/server/files/nagios/contacts/karsten.cfg deleted file mode 100644 index 30fb005f49..0000000000 --- a/roles/nagios/server/files/nagios/contacts/karsten.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name karsten - alias Karsten Hopp - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email karsten@redhat.com -} diff --git a/roles/nagios/server/files/nagios/contacts/kevin.cfg b/roles/nagios/server/files/nagios/contacts/kevin.cfg deleted file mode 100644 index b8c4a33239..0000000000 --- a/roles/nagios/server/files/nagios/contacts/kevin.cfg +++ /dev/null @@ -1,47 +0,0 @@ -define contact{ - contact_name kevin - alias Kevin Fenzi - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email kevin-pager@scrye.com -} - -# define contact{ -# contact_name kevin_xmpp -# alias Kevin Fenzi -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-xmpp -# host_notification_commands host-notify-by-xmpp -# email nirik99@gmail.com -# } - -define contact{ - contact_name kevin-emergency - alias Kevin Fenzi - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager kevin-urgent@scrye.com -} - -define contact{ - contact_name kevinp - alias Kevin Fenzi - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager kevin-urgent@scrye.com -} diff --git a/roles/nagios/server/files/nagios/contacts/lmacken.cfg b/roles/nagios/server/files/nagios/contacts/lmacken.cfg deleted file mode 100644 index 92d35ae981..0000000000 --- a/roles/nagios/server/files/nagios/contacts/lmacken.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name lmacken - alias Luke Macken - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email lewk@vtext.com -} diff --git a/roles/nagios/server/files/nagios/contacts/mmcgrath.cfg b/roles/nagios/server/files/nagios/contacts/mmcgrath.cfg deleted file mode 100644 index 3c130d4568..0000000000 --- a/roles/nagios/server/files/nagios/contacts/mmcgrath.cfg +++ /dev/null @@ -1,38 +0,0 @@ -define contact{ - contact_name mmcgrath - alias Mike McGrath - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email mmcgrath@redhat.com -} - -define contact{ - contact_name mmcgrath-emergency - alias Mike McGrath - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email imlinux+mobile@gmail.com - pager imlinux+mobile@gmail.com -} - -define contact{ - contact_name mmcgrathp - alias Mike McGrath - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email imlinux+mobile@gmail.com - pager imlinux+mobile@gmail.com -} - diff --git a/roles/nagios/server/files/nagios/contacts/mtoman.cfg b/roles/nagios/server/files/nagios/contacts/mtoman.cfg deleted file mode 100644 index 6e68b8f6dc..0000000000 --- a/roles/nagios/server/files/nagios/contacts/mtoman.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ - contact_name mtoman - alias Michal Toman - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email mtoman@redhat.com -} diff --git a/roles/nagios/server/files/nagios/contacts/nb.cfg b/roles/nagios/server/files/nagios/contacts/nb.cfg deleted file mode 100644 index ccf2dcd937..0000000000 --- a/roles/nagios/server/files/nagios/contacts/nb.cfg +++ /dev/null @@ -1,38 +0,0 @@ -define contact{ - contact_name nb - alias Nick Bebout - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email nick@bebout.net -} - -#define contact{ -# contact_name nb-emergency -# alias Nick Bebout -# service_notification_period never -# host_notification_period never -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email nb5@txt.att.net -# pager nb5@txt.att.net -#} - -#define contact{ -# contact_name nbp -# alias Nick Bebout -# service_notification_period never -# host_notification_period never -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email nb5@txt.att.net -# pager nb5@txt.att.net -#} - diff --git a/roles/nagios/server/files/nagios/contacts/parasense.cfg b/roles/nagios/server/files/nagios/contacts/parasense.cfg deleted file mode 100644 index 27d6792f42..0000000000 --- a/roles/nagios/server/files/nagios/contacts/parasense.cfg +++ /dev/null @@ -1,23 +0,0 @@ -define contact{ - contact_name parasense - alias Jon Disnard - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email jdisnard@gmail.com -} - -define contact{ - contact_name parasense-pager - alias Jon Disnard - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email parasense@fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/contacts/ppc-secondary.cfg b/roles/nagios/server/files/nagios/contacts/ppc-secondary.cfg deleted file mode 100644 index 2e0d056127..0000000000 --- a/roles/nagios/server/files/nagios/contacts/ppc-secondary.cfg +++ /dev/null @@ -1,10 +0,0 @@ -define contact { - contact_name ppc-secondary - alias Fedora PPC secondary arch SysAdmins - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email -} diff --git a/roles/nagios/server/files/nagios/contacts/puiterwijk.cfg b/roles/nagios/server/files/nagios/contacts/puiterwijk.cfg deleted file mode 100644 index 10da127438..0000000000 --- a/roles/nagios/server/files/nagios/contacts/puiterwijk.cfg +++ /dev/null @@ -1,35 +0,0 @@ -define contact{ - contact_name puiterwijk - alias Patrick Uiterwijk - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager pager@puiterwijk.org -} - -define contact{ - contact_name puiterwijkp - alias Patrick Uiterwijk - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager pager@puiterwijk.org -} - -define contact{ - contact_name puiterwijk-emergency - alias Patrick Uiterwijk - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - pager emergency@puiterwijk.org -} diff --git a/roles/nagios/server/files/nagios/contacts/ricky.cfg b/roles/nagios/server/files/nagios/contacts/ricky.cfg deleted file mode 100644 index 615f839b42..0000000000 --- a/roles/nagios/server/files/nagios/contacts/ricky.cfg +++ /dev/null @@ -1,38 +0,0 @@ -define contact{ - contact_name ricky - alias Ricky Zhou - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email ricky@rzhou.org -} - -define contact{ - contact_name ricky-emergency - alias Ricky Zhou - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 2014030692@vtext.com - pager 2014030692@vtext.com -} - -define contact{ - contact_name rickyp - alias Ricky Zhou - service_notification_period never - host_notification_period never - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email 2014030692@vtext.com - pager 2014030692@vtext.com -} - diff --git a/roles/nagios/server/files/nagios/contacts/rigeld2.cfg b/roles/nagios/server/files/nagios/contacts/rigeld2.cfg deleted file mode 100644 index 7a29771974..0000000000 --- a/roles/nagios/server/files/nagios/contacts/rigeld2.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define contact{ -contact_name rigeld2 -alias Rob Marti -service_notification_period 24x7 -host_notification_period 24x7 -service_notification_options w,u,c,r -host_notification_options d,u,r -service_notification_commands notify-by-email -host_notification_commands host-notify-by-email -email robmartiwork@gmail.com -} diff --git a/roles/nagios/server/files/nagios/contacts/skvidal.cfg b/roles/nagios/server/files/nagios/contacts/skvidal.cfg deleted file mode 100644 index 27465a1484..0000000000 --- a/roles/nagios/server/files/nagios/contacts/skvidal.cfg +++ /dev/null @@ -1,48 +0,0 @@ -#define contact{ -# contact_name skvidal -# alias Seth Vidal -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-email -# host_notification_commands host-notify-by-email -# email seth-alert@sethdot.org -#} -# -#define contact{ -# contact_name skvidal_xmpp -# alias Seth Vidal -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-xmpp -# host_notification_commands host-notify-by-xmpp -# email skvidal@jabber.org -#} -# -#define contact{ -# contact_name skvidal-emergency -# alias Seth Vidal -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email page-seth-vidal@sethdot.org -#} -# -#define contact{ -# contact_name skvidalp -# alias Seth Vidal -# service_notification_period 16x7 -# host_notification_period 16x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-epager -# host_notification_commands host-notify-by-epager -# email page-seth-vidal@sethdot.org -# pager page-seth-vidal@sethdot.org -#} diff --git a/roles/nagios/server/files/nagios/contacts/smooge.cfg b/roles/nagios/server/files/nagios/contacts/smooge.cfg deleted file mode 100644 index 96de63fca9..0000000000 --- a/roles/nagios/server/files/nagios/contacts/smooge.cfg +++ /dev/null @@ -1,50 +0,0 @@ -define contact{ - contact_name smooge - alias Stephen Smoogen - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email smooge+notify@gmail.com -} - -#define contact{ -# contact_name smooge_xmpp -# alias Stephen Smoogen -# service_notification_period 24x7 -# host_notification_period 24x7 -# service_notification_options w,u,c,r -# host_notification_options d,u,r -# service_notification_commands notify-by-xmpp -# host_notification_commands host-notify-by-xmpp -# email smooge@gmail.com -#} - -define contact{ - contact_name smooge-emergency - alias Stephen Smoogen - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email smooge+mobile@gmail.com - pager smooge+mobile@gmail.com -} - -define contact{ - contact_name smoogep - alias Stephen Smoogen - service_notification_period 16x7 - host_notification_period 16x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-epager - host_notification_commands host-notify-by-epager - email smooge+mobile@gmail.com - pager smooge+mobile@gmail.com -} - diff --git a/roles/nagios/server/files/nagios/contacts/sysadmin-qa.cfg b/roles/nagios/server/files/nagios/contacts/sysadmin-qa.cfg deleted file mode 100644 index d4ed945f0e..0000000000 --- a/roles/nagios/server/files/nagios/contacts/sysadmin-qa.cfg +++ /dev/null @@ -1,13 +0,0 @@ -define contact { - contact_name sysadmin-qa - alias Fedora QA SysAdmins - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,u,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email sysadmin-qa-members@fedoraproject.org -} - - diff --git a/roles/nagios/server/files/nagios/escalations.cfg b/roles/nagios/server/files/nagios/escalations.cfg deleted file mode 100644 index 0232815da0..0000000000 --- a/roles/nagios/server/files/nagios/escalations.cfg +++ /dev/null @@ -1,22 +0,0 @@ -define hostescalation{ - host_name * - hostgroup_name * - contact_groups fedora-sysadmin-email,fedora-sysadmin-emergency,fedora-sysadmin-ircbot - first_notification 2 - last_notification 0 - notification_interval 60 - escalation_period 24x7 - escalation_options d,u,r -} - - -define serviceescalation{ - host_name * - service_description * - contact_groups fedora-sysadmin-email,fedora-sysadmin-emergency,fedora-sysadmin-ircbot - first_notification 2 - last_notification 0 - notification_interval 60 - escalation_period 24x7 - escalation_options w,u,c,r -} diff --git a/roles/nagios/server/files/nagios/hostgroups/all.cfg b/roles/nagios/server/files/nagios/hostgroups/all.cfg deleted file mode 100644 index 69847a853c..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/all.cfg +++ /dev/null @@ -1,11 +0,0 @@ -############### -# All Servers and associated devices -############### - -# Hosts in telia are defined elsewhere -# why its there -define hostgroup { - hostgroup_name all - alias All hosts / Devices - members *, -} diff --git a/roles/nagios/server/files/nagios/hostgroups/autoqa.cfg b/roles/nagios/server/files/nagios/hostgroups/autoqa.cfg deleted file mode 100644 index 4277d25351..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/autoqa.cfg +++ /dev/null @@ -1,5 +0,0 @@ -#define hostgroup { -# hostgroup_name autoqa -# alias AutoQA Hosts -# members autoqa01 -#} diff --git a/roles/nagios/server/files/nagios/hostgroups/dns.cfg b/roles/nagios/server/files/nagios/hostgroups/dns.cfg deleted file mode 100644 index 5b15470654..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/dns.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define hostgroup { - hostgroup_name dnsservers - alias DNS Servers - members ns02,ns03,ns04,ns05 -} diff --git a/roles/nagios/server/files/nagios/hostgroups/euservers.cfg b/roles/nagios/server/files/nagios/hostgroups/euservers.cfg deleted file mode 100644 index f6944aa529..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/euservers.cfg +++ /dev/null @@ -1,10 +0,0 @@ -############### -# All Eupropean Servers -# 'good' RTT figures adjusted for US->EU -############### - -#define hostgroup { -# hostgroup_name euservers -# alias European Servers -# members bodhost01 -#} diff --git a/roles/nagios/server/files/nagios/hostgroups/fas.cfg b/roles/nagios/server/files/nagios/hostgroups/fas.cfg deleted file mode 100644 index d2b07fd9d0..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/fas.cfg +++ /dev/null @@ -1,10 +0,0 @@ -############### -# FAS Servers (just fas for now) -############### - -define hostgroup { - hostgroup_name fasservers - alias FAS Servers - members fas01, fas02, fas03 -} - diff --git a/roles/nagios/server/files/nagios/hostgroups/hosted.cfg b/roles/nagios/server/files/nagios/hostgroups/hosted.cfg deleted file mode 100644 index cd6479ae95..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/hosted.cfg +++ /dev/null @@ -1,5 +0,0 @@ -#define hostgroup { -# hostgroup_name hosted -# alias Hosted Servers -# members hosted03 -#} diff --git a/roles/nagios/server/files/nagios/hostgroups/kvmHosts.cfg b/roles/nagios/server/files/nagios/hostgroups/kvmHosts.cfg deleted file mode 100644 index f6127fdd26..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/kvmHosts.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############### -# KVM Servers -############### - -define hostgroup { - hostgroup_name kvmServers - alias kvmServers - members bvirthost06, bvirthost01, bvirthost03, bvirthost08, bvirthost09, bvirthost10, bvirthost11, virthost01, virthost02, virthost11, virthost03, virthost12, virthost14, virthost15, virthost16, virthost17, virthost18, virthost-comm02, virthost-comm03, virthost-comm04, tummy01, osuosl01, osuosl02, osuosl03, ibiblio02, ibiblio03, ibiblio04, ibiblio05, coloamer01, internetx01, qa09.qa, qa10.qa, qa11.qa, qa12.qa, qa13.qa, qa14.qa, dedicatedsolutions01 -} diff --git a/roles/nagios/server/files/nagios/hostgroups/mgmt.cfg b/roles/nagios/server/files/nagios/hostgroups/mgmt.cfg deleted file mode 100644 index 28f7d447e6..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/mgmt.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define hostgroup { - hostgroup_name mgmt - alias Physical hosts management inerface - members backup01.mgmt.fedoraproject.org,bvirthost01.mgmt.fedoraproject.org,download01.mgmt.fedoraproject.org,download02.mgmt.fedoraproject.org,download03.mgmt.fedoraproject.org,download04.mgmt.fedoraproject.org,download05.mgmt.fedoraproject.org,qa01.mgmt.fedoraproject.org,qa02.mgmt.fedoraproject.org,qa03.mgmt.fedoraproject.org,qa04.mgmt.fedoraproject.org,qa05.mgmt.fedoraproject.org,qa07.mgmt.fedoraproject.org,qa08.mgmt.fedoraproject.org,qa09.mgmt.fedoraproject.org,qa10.mgmt.fedoraproject.org,qa11.mgmt.fedoraproject.org,qa12.mgmt.fedoraproject.org,qa13.mgmt.fedoraproject.org,qa14.mgmt.fedoraproject.org,virthost01.mgmt.fedoraproject.org,virthost02.mgmt.fedoraproject.org,virthost11.mgmt.fedoraproject.org,virthost03.mgmt.fedoraproject.org,virthost05.mgmt.fedoraproject.org,virthost12.mgmt.fedoraproject.org,virthost14.mgmt.fedoraproject.org,virthost15.mgmt.fedoraproject.org,virthost16.mgmt.fedoraproject.org,virthost17.mgmt.fedoraproject.org,virthost18.mgmt.fedoraproject.org,virthost-comm02.mgmt.fedoraproject.org, virthost-comm03.mgmt.fedoraproject.org, virthost-comm04.mgmt.fedoraproject.org,sign-vault03.mgmt.fedoraproject.org,sign-vault04.mgmt.fedoraproject.org,fed-cloud09.mgmt.fedoraproject.org,fed-cloud08.mgmt.fedoraproject.org,fed-cloud10.mgmt.fedoraproject.org,fed-cloud11.mgmt.fedoraproject.org,fed-cloud12.mgmt.fedoraproject.org,fed-cloud13.mgmt.fedoraproject.org,fed-cloud14.mgmt.fedoraproject.org,fed-cloud15.mgmt.fedoraproject.org -} - diff --git a/roles/nagios/server/files/nagios/hostgroups/nomail.cfg b/roles/nagios/server/files/nagios/hostgroups/nomail.cfg deleted file mode 100644 index ac300642ae..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/nomail.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define hostgroup { - hostgroup_name nomail - alias No Mail - members *, !bastion01, !bastion02, !bastion-vpn, !backup01, !fas01.stg, !koji01.stg, !pkgs01.stg, !proxy01.stg, !bodhi-backend01.stg, !value01.stg, !smtp-mm-tummy01, !smtp-mm-ib01, !smtp-mm-osuosl01, !proxy01, !proxy01, !proxy02, !proxy02, !proxy03, !proxy04, !proxy05, !proxy06, !proxy08, !proxy08, !proxy09, !proxy10, !proxy11, !proxy12, !fwsm01-gw, !backup01.mgmt.fedoraproject.org,!bvirthost01.mgmt.fedoraproject.org,!download01.mgmt.fedoraproject.org,!download02.mgmt.fedoraproject.org,!download03.mgmt.fedoraproject.org,!download04.mgmt.fedoraproject.org,!download05.mgmt.fedoraproject.org,!qa01.mgmt.fedoraproject.org,!qa02.mgmt.fedoraproject.org,!qa03.mgmt.fedoraproject.org,!qa04.mgmt.fedoraproject.org,!qa05.mgmt.fedoraproject.org,!qa07.mgmt.fedoraproject.org,!qa08.mgmt.fedoraproject.org,!qa09.mgmt.fedoraproject.org,!qa10.mgmt.fedoraproject.org,!qa11.mgmt.fedoraproject.org,!qa12.mgmt.fedoraproject.org,!qa13.mgmt.fedoraproject.org,!qa14.mgmt.fedoraproject.org,!virthost01.mgmt.fedoraproject.org,!virthost02.mgmt.fedoraproject.org,!virthost11.mgmt.fedoraproject.org,!virthost03.mgmt.fedoraproject.org,!virthost05.mgmt.fedoraproject.org,!virthost12.mgmt.fedoraproject.org,!virthost14.mgmt.fedoraproject.org,!virthost15.mgmt.fedoraproject.org,!virthost16.mgmt.fedoraproject.org,!virthost17.mgmt.fedoraproject.org,!virthost18.mgmt.fedoraproject.org,!virthost19.mgmt.fedoraproject.org,!virthost20.mgmt.fedoraproject.org,!virthost21.mgmt.fedoraproject.org,!virthost22.mgmt.fedoraproject.org,!ibiblio-gw,!packages03,!packages04,!status-fedora2, !virthost-comm02.mgmt.fedoraproject.org, !virthost-comm03.mgmt.fedoraproject.org, !virthost-comm04.mgmt.fedoraproject.org, !ppc-hub,!retrace01.qa,!sign-vault03,!sign-vault03.mgmt.fedoraproject.org,!sign-vault04,!sign-vault04.mgmt.fedoraproject.org, !arm01-builder00, !arm01-retrace01, !arm01-builder02, !arm01-builder03, !arm01-builder04, !arm01-builder05, !arm01-builder06, !arm01-builder07, !arm01-builder08, !arm01-builder09, !arm01-builder10, !arm01-builder11, !arm01-builder12, !arm01-builder13, !arm01-builder14, !arm01-builder15, !arm01-builder16, !arm01-builder17, !arm01-builder18, !arm01-builder19, !arm01-builder20, !arm01-builder21, !arm01-builder22, !arm01-builder23, !arm02-builder00, !arm02-builder01, !arm02-builder02, !arm02-builder03, !arm02-builder05, !arm02-builder06, !arm02-builder08, !arm02-builder09, !arm02-builder10, !arm02-builder11, !arm02-builder12, !arm02-builder13, !arm02-builder15, !arm02-builder16, !arm02-builder18, !arm02-builder19, !arm02-builder20, !arm02-builder21, !arm02-builder22, !arm02-builder23, !arm04-builder00, !arm04-builder01, !arm04-builder02, !arm04-builder03, !arm04-builder04, !arm04-builder05, !arm04-builder06, !arm04-builder07, !arm04-builder08, !arm04-builder09, !arm04-builder10, !arm04-builder11, !arm04-builder12, !arm04-builder13, !arm04-builder14, !arm04-builder15, !arm04-builder16, !arm04-builder18, !arm04-builder19, !arm04-builder20, !arm04-builder22, !arm04-builder23, !buildvm-01, !buildvm-02, !buildvm-03, !buildvm-04, !buildvm-05, !buildvm-06, !buildvm-07, !buildvm-08, !buildvm-09, !buildvm-10, !buildvm-11, !buildvm-12, !buildvm-13, !buildvm-14, !buildvm-15, !buildvm-16, !buildvm-17, !buildvm-18, !buildvm-19, !buildvm-20, !buildvm-21, !buildvm-22, !buildvm-23, !buildvm-24, !buildvm-25, !buildvm-26, !buildvm-27, !buildvmhost-01, !buildvmhost-02, !buildvmhost-03, !buildvmhost-04, !buildvmhost-12, !cloud-gw, !fed-cloud03.mgmt.fedoraproject.org, !fed-cloud04.mgmt.fedoraproject.org, !fed-cloud05.mgmt.fedoraproject.org, !fed-cloud06.mgmt.fedoraproject.org, !fed-cloud07.mgmt.fedoraproject.org, !fed-cloud08.mgmt.fedoraproject.org, !fed-cloud09.mgmt.fedoraproject.org, !fed-cloud10.mgmt.fedoraproject.org, !fed-cloud11.mgmt.fedoraproject.org, !fed-cloud12.mgmt.fedoraproject.org, !fed-cloud13.mgmt.fedoraproject.org, !fed-cloud14.mgmt.fedoraproject.org, !fed-cloud15.mgmt.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hostgroups/noswap.cfg b/roles/nagios/server/files/nagios/hostgroups/noswap.cfg deleted file mode 100644 index 023be9ce94..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/noswap.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define hostgroup { - hostgroup_name noswap - alias No Swap - members *, !mirrorlist-host1plus, !proxy01, !proxy01, !proxy02, !proxy02, !proxy03, !proxy04, !proxy05, !proxy06, !proxy08, !proxy08, !proxy12, !proxy12, !proxy10, !proxy11, !proxy12, !fwsm01-gw, !backup01.mgmt.fedoraproject.org,!download01.mgmt.fedoraproject.org,!download02.mgmt.fedoraproject.org,!download03.mgmt.fedoraproject.org,!download04.mgmt.fedoraproject.org,!download05.mgmt.fedoraproject.org,!qa01.mgmt.fedoraproject.org,!qa02.mgmt.fedoraproject.org,!qa03.mgmt.fedoraproject.org,!qa04.mgmt.fedoraproject.org,!qa05.mgmt.fedoraproject.org,!qa07.mgmt.fedoraproject.org,!qa08.mgmt.fedoraproject.org,!qa09.mgmt.fedoraproject.org,!qa10.mgmt.fedoraproject.org,!qa11.mgmt.fedoraproject.org,!qa12.mgmt.fedoraproject.org,!qa13.mgmt.fedoraproject.org,!qa14.mgmt.fedoraproject.org,!bvirthost01.mgmt.fedoraproject.org,!virthost01.mgmt.fedoraproject.org,!virthost02.mgmt.fedoraproject.org,!virthost11.mgmt.fedoraproject.org,!virthost03.mgmt.fedoraproject.org,!virthost05.mgmt.fedoraproject.org,!virthost12.mgmt.fedoraproject.org, !virthost14.mgmt.fedoraproject.org,!virthost15.mgmt.fedoraproject.org,!virthost16.mgmt.fedoraproject.org,!virthost17.mgmt.fedoraproject.org,!virthost18.mgmt.fedoraproject.org, !virthost19.mgmt.fedoraproject.org, !virthost20.mgmt.fedoraproject.org, !virthost21.mgmt.fedoraproject.org, !virthost22.mgmt.fedoraproject.org, !ibiblio-gw, !status-fedora2, !virthost-comm02.mgmt.fedoraproject.org, !virthost-comm03.mgmt.fedoraproject.org, !virthost-comm04.mgmt.fedoraproject.org, !ppc-hub,!retrace01.qa,!sign-vault03,!sign-vault03.mgmt.fedoraproject.org,!sign-vault04,!sign-vault04.mgmt.fedoraproject.org, !arm01-builder00, !arm01-retrace01, !arm01-builder02, !arm01-builder03, !arm01-builder04, !arm01-builder05, !arm01-builder06, !arm01-builder07, !arm01-builder08, !arm01-builder09, !arm01-builder10, !arm01-builder11, !arm01-builder12, !arm01-builder13, !arm01-builder14, !arm01-builder15, !arm01-builder16, !arm01-builder17, !arm01-builder18, !arm01-builder19, !arm01-builder20, !arm01-builder21, !arm01-builder22, !arm01-builder23, !arm02-builder00, !arm02-builder01, !arm02-builder02, !arm02-builder03, !arm02-builder05, !arm02-builder06, !arm02-builder08, !arm02-builder09, !arm02-builder10, !arm02-builder11, !arm02-builder12, !arm02-builder13, !arm02-builder15, !arm02-builder16, !arm02-builder18, !arm02-builder19, !arm02-builder20, !arm02-builder21, !arm02-builder22, !arm02-builder23, !arm04-builder00, !arm04-builder01, !arm04-builder02, !arm04-builder03, !arm04-builder04, !arm04-builder05, !arm04-builder06, !arm04-builder07, !arm04-builder08, !arm04-builder09, !arm04-builder10, !arm04-builder11, !arm04-builder12, !arm04-builder13, !arm04-builder14, !arm04-builder15, !arm04-builder16, !arm04-builder18, !arm04-builder19, !arm04-builder20, !arm04-builder22, !arm04-builder23, !buildvm-01, !buildvm-02, !buildvm-03, !buildvm-04, !buildvm-05, !buildvm-06, !buildvm-07, !buildvm-08, !buildvm-09, !buildvm-10, !buildvm-11, !buildvm-12, !buildvm-13, !buildvm-14, !buildvm-15, !buildvm-16, !buildvm-17, !buildvm-18, !buildvm-19, !buildvm-20, !buildvm-21, !buildvm-22, !buildvm-23, !buildvm-24, !buildvm-25, !buildvm-26, !buildvm-27, !buildvmhost-01, !buildvmhost-02, !buildvmhost-03, !buildvmhost-04, !buildvmhost-12, !cloud-gw, !fed-cloud03.mgmt.fedoraproject.org, !fed-cloud04.mgmt.fedoraproject.org, !fed-cloud05.mgmt.fedoraproject.org, !fed-cloud06.mgmt.fedoraproject.org, !fed-cloud07.mgmt.fedoraproject.org, !fed-cloud08.mgmt.fedoraproject.org, !fed-cloud09.mgmt.fedoraproject.org, !fed-cloud10.mgmt.fedoraproject.org, !fed-cloud11.mgmt.fedoraproject.org, !fed-cloud12.mgmt.fedoraproject.org, !fed-cloud13.mgmt.fedoraproject.org, !fed-cloud14.mgmt.fedoraproject.org, !fed-cloud15.mgmt.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hostgroups/ppc-secondary.cfg b/roles/nagios/server/files/nagios/hostgroups/ppc-secondary.cfg deleted file mode 100644 index df135cd041..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/ppc-secondary.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define hostgroup { - hostgroup_name ppc-secondary - alias PPC secondary Hosts - members ppc-hub -} diff --git a/roles/nagios/server/files/nagios/hostgroups/proxies.cfg b/roles/nagios/server/files/nagios/hostgroups/proxies.cfg deleted file mode 100644 index b262547994..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/proxies.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############### -# Proxy Servers -############### - -define hostgroup { - hostgroup_name proxies - alias proxies - members proxy01, proxy02, proxy03, proxy04, proxy05, proxy06, proxy08, proxy09, proxy10, proxy11, proxy12 -} diff --git a/roles/nagios/server/files/nagios/hostgroups/puppet.cfg b/roles/nagios/server/files/nagios/hostgroups/puppet.cfg deleted file mode 100644 index b18ae99691..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/puppet.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############### -# Puppet Servers (just puppet1 for now) -############### - -#define hostgroup { -# hostgroup_name puppetservers -# alias Puppet Servers -# members lockbox01 -#} diff --git a/roles/nagios/server/files/nagios/hostgroups/retrace.cfg b/roles/nagios/server/files/nagios/hostgroups/retrace.cfg deleted file mode 100644 index d13d518a8a..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/retrace.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define hostgroup { - hostgroup_name retrace - alias Retrace Hosts - members retrace01.qa -} diff --git a/roles/nagios/server/files/nagios/hostgroups/servers.cfg b/roles/nagios/server/files/nagios/hostgroups/servers.cfg deleted file mode 100644 index db03e6e34b..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/servers.cfg +++ /dev/null @@ -1,10 +0,0 @@ -############### -# All Servers - Minus Builders -############### - -define hostgroup { - hostgroup_name servers - alias All Servers - members *, !proxy01, !proxy01, !proxy02, !proxy02, !proxy03, !proxy04, !proxy05, !proxy06, !proxy08, !proxy08, !proxy12, !proxy12, !proxy10, !proxy11, !proxy12, !fwsm01-gw, !backup01.mgmt.fedoraproject.org,!download01.mgmt.fedoraproject.org,!download02.mgmt.fedoraproject.org,!download03.mgmt.fedoraproject.org,!download04.mgmt.fedoraproject.org,!download05.mgmt.fedoraproject.org,!qa01.mgmt.fedoraproject.org,!qa02.mgmt.fedoraproject.org,!qa03.mgmt.fedoraproject.org,!qa04.mgmt.fedoraproject.org,!qa05.mgmt.fedoraproject.org,!qa07.mgmt.fedoraproject.org,!qa08.mgmt.fedoraproject.org,!qa09.mgmt.fedoraproject.org,!qa10.mgmt.fedoraproject.org,!qa11.mgmt.fedoraproject.org,!qa12.mgmt.fedoraproject.org,!qa13.mgmt.fedoraproject.org,!qa14.mgmt.fedoraproject.org,!bvirthost01.mgmt.fedoraproject.org,!virthost01.mgmt.fedoraproject.org,!virthost02.mgmt.fedoraproject.org,!virthost11.mgmt.fedoraproject.org,!virthost03.mgmt.fedoraproject.org,!virthost05.mgmt.fedoraproject.org,!virthost12.mgmt.fedoraproject.org, !virthost14.mgmt.fedoraproject.org,!virthost15.mgmt.fedoraproject.org,!virthost16.mgmt.fedoraproject.org,!virthost17.mgmt.fedoraproject.org,!virthost18.mgmt.fedoraproject.org, !virthost19.mgmt.fedoraproject.org, !virthost20.mgmt.fedoraproject.org, !virthost21.mgmt.fedoraproject.org, !virthost22.mgmt.fedoraproject.org, !ibiblio-gw, !status-fedora2, !virthost-comm02.mgmt.fedoraproject.org, !virthost-comm03.mgmt.fedoraproject.org, !virthost-comm04.mgmt.fedoraproject.org, !ppc-hub,!retrace01.qa,!sign-vault03,!sign-vault03.mgmt.fedoraproject.org,!sign-vault04,!sign-vault04.mgmt.fedoraproject.org, !arm01-builder00, !arm01-retrace01, !arm01-builder02, !arm01-builder03, !arm01-builder04, !arm01-builder05, !arm01-builder06, !arm01-builder07, !arm01-builder08, !arm01-builder09, !arm01-builder10, !arm01-builder11, !arm01-builder12, !arm01-builder13, !arm01-builder14, !arm01-builder15, !arm01-builder16, !arm01-builder17, !arm01-builder18, !arm01-builder19, !arm01-builder20, !arm01-builder21, !arm01-builder22, !arm01-builder23, !arm02-builder00, !arm02-builder01, !arm02-builder02, !arm02-builder03, !arm02-builder05, !arm02-builder06, !arm02-builder08, !arm02-builder09, !arm02-builder10, !arm02-builder11, !arm02-builder12, !arm02-builder13, !arm02-builder15, !arm02-builder16, !arm02-builder18, !arm02-builder19, !arm02-builder20, !arm02-builder21, !arm02-builder22, !arm02-builder23, !arm04-builder00, !arm04-builder01, !arm04-builder02, !arm04-builder03, !arm04-builder04, !arm04-builder05, !arm04-builder06, !arm04-builder07, !arm04-builder08, !arm04-builder09, !arm04-builder10, !arm04-builder11, !arm04-builder12, !arm04-builder13, !arm04-builder14, !arm04-builder15, !arm04-builder16, !arm04-builder18, !arm04-builder19, !arm04-builder20, !arm04-builder22, !arm04-builder23, !buildvm-01, !buildvm-02, !buildvm-03, !buildvm-04, !buildvm-05, !buildvm-06, !buildvm-07, !buildvm-08, !buildvm-09, !buildvm-10, !buildvm-11, !buildvm-12, !buildvm-13, !buildvm-14, !buildvm-15, !buildvm-16, !buildvm-17, !buildvm-18, !buildvm-19, !buildvm-20, !buildvm-21, !buildvm-22, !buildvm-23, !buildvm-24, !buildvm-25, !buildvm-26, !buildvm-27, !buildvmhost-01, !buildvmhost-02, !buildvmhost-03, !buildvmhost-04, !buildvmhost-12, !cloud-gw, !fed-cloud03.mgmt.fedoraproject.org, !fed-cloud04.mgmt.fedoraproject.org, !fed-cloud05.mgmt.fedoraproject.org, !fed-cloud06.mgmt.fedoraproject.org, !fed-cloud07.mgmt.fedoraproject.org, !fed-cloud08.mgmt.fedoraproject.org, !fed-cloud09.mgmt.fedoraproject.org, !fed-cloud10.mgmt.fedoraproject.org, !fed-cloud11.mgmt.fedoraproject.org, !fed-cloud12.mgmt.fedoraproject.org, !fed-cloud13.mgmt.fedoraproject.org, !fed-cloud14.mgmt.fedoraproject.org, !fed-cloud15.mgmt.fedoraproject.org -} - diff --git a/roles/nagios/server/files/nagios/hostgroups/smtp-mm.cfg b/roles/nagios/server/files/nagios/hostgroups/smtp-mm.cfg deleted file mode 100644 index bebb3d96cd..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/smtp-mm.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############## -# Smtp Servers -############### - -define hostgroup { - hostgroup_name smtp-mm - alias smtp-mm - members smtp-mm-ib01,smtp-mm-tummy01,smtp-mm-osuosl01 -} diff --git a/roles/nagios/server/files/nagios/hostgroups/taskotron.cfg b/roles/nagios/server/files/nagios/hostgroups/taskotron.cfg deleted file mode 100644 index 572c5808de..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/taskotron.cfg +++ /dev/null @@ -1,11 +0,0 @@ -define hostgroup { - hostgroup_name taskotron - alias Taskotron Production Hosts - members taskotron01.qa, qa12.qa, qa13.qa -} - -define hostgroup { - hostgroup_name taskotron-stg - alias Taskotron Staging Hosts - members taskotron-stg01.qa, qa10.qa -} diff --git a/roles/nagios/server/files/nagios/hostgroups/unbound.cfg b/roles/nagios/server/files/nagios/hostgroups/unbound.cfg deleted file mode 100644 index 778eb32708..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/unbound.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############### -# Unbound Servers -############### - -define hostgroup { - hostgroup_name unboundservers - alias Unbound Servers - members unbound-tummy01, unbound-ib01, unbound-osuosl01 -} diff --git a/roles/nagios/server/files/nagios/hostgroups/vpnclients.cfg b/roles/nagios/server/files/nagios/hostgroups/vpnclients.cfg deleted file mode 100644 index 610be008a3..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/vpnclients.cfg +++ /dev/null @@ -1,9 +0,0 @@ -# -# host group of all vpn client hosts. -# - -define hostgroup { - hostgroup_name vpnclients - alias vpnclients - members tummy01,unbound-tummy01,smtp-mm-tummy01,proxy03,unbound-osuosl01,coloamer01,proxy08,osuosl02,proxy09,download-ib01,noc02,unbound-ib01,ibiblio02,ns02,proxy04,smtp-mm-ib01,torrent02,ibiblio03,ibiblio04,people02,internetx01,ns05,proxy02,osuosl01,proxy06,osuosl02,osuosl03,smtp-mm-osuosl01,dedicatedsolutions01,proxy05,dedicatedsolutions01,proxy11,ibiblio05,proxy12 -} diff --git a/roles/nagios/server/files/nagios/hostgroups/web.cfg b/roles/nagios/server/files/nagios/hostgroups/web.cfg deleted file mode 100644 index eaa91f9232..0000000000 --- a/roles/nagios/server/files/nagios/hostgroups/web.cfg +++ /dev/null @@ -1,9 +0,0 @@ -############### -# Web Servers -############### - -define hostgroup { - hostgroup_name webservers - alias webservers - members proxy01, proxy02, proxy03, proxy04, proxy05, proxy06, proxy08, proxy09, proxy10, proxy11, proxy12, fas01, fas02, fas03, status-fedora2, ipsilon01, ipsilon02, ipa01, ipa02 -} diff --git a/roles/nagios/server/files/nagios/hosts/anitya-backend01.cfg b/roles/nagios/server/files/nagios/hosts/anitya-backend01.cfg deleted file mode 100644 index 060dc62a74..0000000000 --- a/roles/nagios/server/files/nagios/hosts/anitya-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name anitya-backend01 - alias anitya-backend01.fedoraproject.org - use defaulttemplate - address anitya-backend01.fedoraproject.org - parents osuosl03 -} diff --git a/roles/nagios/server/files/nagios/hosts/anitya-frontend01.cfg b/roles/nagios/server/files/nagios/hosts/anitya-frontend01.cfg deleted file mode 100644 index 20d7aeeff3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/anitya-frontend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name anitya-frontend01 - alias anitya-frontend01.fedoraproject.org - use defaulttemplate - address anitya-frontend01.fedoraproject.org - parents osuosl03 -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder00.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder00.cfg deleted file mode 100644 index 8decbb4105..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder00.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder00 - alias arm01-builder00.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder00.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder02.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder02.cfg deleted file mode 100644 index c1cfd7e3b5..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder02.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder02 - alias arm01-builder02.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder02.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder03.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder03.cfg deleted file mode 100644 index 7a08a0f0bd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder03.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder03 - alias arm01-builder03.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder03.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder04.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder04.cfg deleted file mode 100644 index 9fd8f28b2a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder04.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder04 - alias arm01-builder04.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder04.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder05.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder05.cfg deleted file mode 100644 index 9d5cc32285..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder05.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder05 - alias arm01-builder05.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder05.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder06.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder06.cfg deleted file mode 100644 index 416722cd8c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder06.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder06 - alias arm01-builder06.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder06.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder07.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder07.cfg deleted file mode 100644 index 9d62a47ae2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder07.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder07 - alias arm01-builder07.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder07.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder08.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder08.cfg deleted file mode 100644 index 2f08718c03..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder08.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder08 - alias arm01-builder08.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder08.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder09.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder09.cfg deleted file mode 100644 index 9577853928..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder09.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder09 - alias arm01-builder09.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder09.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder10.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder10.cfg deleted file mode 100644 index 61dee9f641..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder10.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder10 - alias arm01-builder10.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder10.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder11.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder11.cfg deleted file mode 100644 index 4b0bfaf025..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder11.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder11 - alias arm01-builder11.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder11.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder12.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder12.cfg deleted file mode 100644 index 22a3a63322..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder12.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder12 - alias arm01-builder12.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder12.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder13.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder13.cfg deleted file mode 100644 index 262add6178..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder13.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder13 - alias arm01-builder13.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder13.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder14.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder14.cfg deleted file mode 100644 index bbb92d08a8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder14.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder14 - alias arm01-builder14.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder14.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder15.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder15.cfg deleted file mode 100644 index 398054422a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder15.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder15 - alias arm01-builder15.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder15.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder16.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder16.cfg deleted file mode 100644 index 11c883fdf2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder16.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder16 - alias arm01-builder16.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder16.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder17.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder17.cfg deleted file mode 100644 index 1d238bfeac..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder17.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder17 - alias arm01-builder17.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder17.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder18.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder18.cfg deleted file mode 100644 index 170d6b634a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder18.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder18 - alias arm01-builder18.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder18.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder19.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder19.cfg deleted file mode 100644 index 398d2e94bd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder19.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder19 - alias arm01-builder19.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder19.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder20.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder20.cfg deleted file mode 100644 index 69710b76ca..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder20.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder20 - alias arm01-builder20.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder20.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder21.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder21.cfg deleted file mode 100644 index d7a94c6b9b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder21.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder21 - alias arm01-builder21.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder21.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder22.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder22.cfg deleted file mode 100644 index fc146cef9e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder22.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder22 - alias arm01-builder22.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder22.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-builder23.cfg b/roles/nagios/server/files/nagios/hosts/arm01-builder23.cfg deleted file mode 100644 index fbcb86fee2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-builder23.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-builder23 - alias arm01-builder23.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-builder23.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-releng00.cfg b/roles/nagios/server/files/nagios/hosts/arm01-releng00.cfg deleted file mode 100644 index c73b76f776..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-releng00.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm01-releng00 -# alias arm01-releng00.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm01-releng00.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-releng02.cfg b/roles/nagios/server/files/nagios/hosts/arm01-releng02.cfg deleted file mode 100644 index 9242c9f679..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-releng02.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm01-releng02 -# alias arm01-releng02.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm01-releng02.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm01-retrace01.cfg b/roles/nagios/server/files/nagios/hosts/arm01-retrace01.cfg deleted file mode 100644 index 0f3f190e4c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm01-retrace01.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm01-retrace01 - alias arm01-retrace01.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm01-retrace01.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder00.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder00.cfg deleted file mode 100644 index ceefbcb74e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder00.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder00 - alias arm02-builder00.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder00.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder01.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder01.cfg deleted file mode 100644 index aca9c4e34e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder01.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder01 - alias arm02-builder01.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder01.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder02.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder02.cfg deleted file mode 100644 index c4d4a3562c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder02.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder02 - alias arm02-builder02.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder02.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder03.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder03.cfg deleted file mode 100644 index e70fd75d25..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder03.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder03 - alias arm02-builder03.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder03.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder04.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder04.cfg deleted file mode 100644 index 6a6cdfa00d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder04.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm02-builder04 -# alias arm02-builder04.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm02-builder04.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder05.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder05.cfg deleted file mode 100644 index cf02caeaf6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder05.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder05 - alias arm02-builder05.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder05.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder06.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder06.cfg deleted file mode 100644 index d05ca776ed..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder06.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder06 - alias arm02-builder06.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder06.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder07.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder07.cfg deleted file mode 100644 index e79e9156ed..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder07.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm02-builder07 -# alias arm02-builder07.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm02-builder07.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder08.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder08.cfg deleted file mode 100644 index 400cf07632..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder08.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder08 - alias arm02-builder08.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder08.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder09.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder09.cfg deleted file mode 100644 index 5728bb8f47..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder09.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder09 - alias arm02-builder09.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder09.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder10.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder10.cfg deleted file mode 100644 index 16d5d9f5a8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder10.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder10 - alias arm02-builder10.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder10.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder11.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder11.cfg deleted file mode 100644 index 186eb3fd47..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder11.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder11 - alias arm02-builder11.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder11.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder12.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder12.cfg deleted file mode 100644 index a7c0c17233..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder12.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder12 - alias arm02-builder12.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder12.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder13.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder13.cfg deleted file mode 100644 index 6553f51c7a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder13.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder13 - alias arm02-builder13.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder13.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder14.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder14.cfg deleted file mode 100644 index 0f44b0fdd6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder14.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm02-builder14 -# alias arm02-builder14.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm02-builder14.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder15.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder15.cfg deleted file mode 100644 index c5ad44f8c6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder15.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder15 - alias arm02-builder15.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder15.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder16.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder16.cfg deleted file mode 100644 index fcb891d3f0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder16.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder16 - alias arm02-builder16.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder16.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder17.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder17.cfg deleted file mode 100644 index 4fc9e7bdd5..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder17.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm02-builder17 -# alias arm02-builder17.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm02-builder17.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder18.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder18.cfg deleted file mode 100644 index 37777b83c2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder18.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder18 - alias arm02-builder18.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder18.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder19.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder19.cfg deleted file mode 100644 index f4458636e9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder19.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder19 - alias arm02-builder19.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder19.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder20.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder20.cfg deleted file mode 100644 index 22828d4742..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder20.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder20 - alias arm02-builder20.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder20.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder21.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder21.cfg deleted file mode 100644 index 2cc72f087d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder21.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder21 - alias arm02-builder21.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder21.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder22.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder22.cfg deleted file mode 100644 index cf81f722d7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder22.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder22 - alias arm02-builder22.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder22.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm02-builder23.cfg b/roles/nagios/server/files/nagios/hosts/arm02-builder23.cfg deleted file mode 100644 index 107755086e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm02-builder23.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm02-builder23 - alias arm02-builder23.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm02-builder23.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-00.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-00.cfg deleted file mode 100644 index 7d542e7a74..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-00.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder00 - alias arm04-builder00.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder00.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-01.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-01.cfg deleted file mode 100644 index 0b239073e0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-01.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder01 - alias arm04-builder01.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder01.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-02.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-02.cfg deleted file mode 100644 index a4f4555ed3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-02.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder02 - alias arm04-builder02.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder02.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-03.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-03.cfg deleted file mode 100644 index b4d50885dc..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-03.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder03 - alias arm04-builder03.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder03.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-04.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-04.cfg deleted file mode 100644 index 73545db8b9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-04.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder04 - alias arm04-builder04.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder04.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-05.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-05.cfg deleted file mode 100644 index f43d6f7c3a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-05.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder05 - alias arm04-builder05.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder05.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-06.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-06.cfg deleted file mode 100644 index afb6844b56..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-06.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder06 - alias arm04-builder06.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder06.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-07.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-07.cfg deleted file mode 100644 index 2ec6ba7c4e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-07.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder07 - alias arm04-builder07.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder07.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-08.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-08.cfg deleted file mode 100644 index fd31c7847a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-08.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder08 - alias arm04-builder08.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder08.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-09.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-09.cfg deleted file mode 100644 index a50b1c8684..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-09.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder09 - alias arm04-builder09.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder09.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-10.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-10.cfg deleted file mode 100644 index 70bb115904..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-10.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder10 - alias arm04-builder10.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder10.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-11.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-11.cfg deleted file mode 100644 index 9fc2a90815..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-11.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder11 - alias arm04-builder11.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder11.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-12.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-12.cfg deleted file mode 100644 index f0643d8794..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-12.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder12 - alias arm04-builder12.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder12.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-13.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-13.cfg deleted file mode 100644 index cceffca34a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-13.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder13 - alias arm04-builder13.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder13.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-14.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-14.cfg deleted file mode 100644 index 878a39f9a0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-14.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder14 - alias arm04-builder14.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder14.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-15.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-15.cfg deleted file mode 100644 index 732e992280..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-15.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder15 - alias arm04-builder15.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder15.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-16.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-16.cfg deleted file mode 100644 index 5c4cfa6992..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-16.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder16 - alias arm04-builder16.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder16.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-17.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-17.cfg deleted file mode 100644 index 70bc16cab8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-17.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm04-builder17 -# alias arm04-builder17.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm04-builder17.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-18.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-18.cfg deleted file mode 100644 index 0741044a26..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-18.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder18 - alias arm04-builder18.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder18.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-19.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-19.cfg deleted file mode 100644 index 77218dc380..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-19.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder19 - alias arm04-builder19.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder19.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-20.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-20.cfg deleted file mode 100644 index 5051cacd85..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-20.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder20 - alias arm04-builder20.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder20.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-21.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-21.cfg deleted file mode 100644 index 2ea8e1e24e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-21.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name arm04-builder21 -# alias arm04-builder21.arm.fedoraproject.org -# use defaultbuilders -# check_command check-host-alive -# address arm04-builder21.arm.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-22.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-22.cfg deleted file mode 100644 index b06059ade2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-22.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder22 - alias arm04-builder22.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder22.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/arm04-builder-23.cfg b/roles/nagios/server/files/nagios/hosts/arm04-builder-23.cfg deleted file mode 100644 index 45a47cf16b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/arm04-builder-23.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name arm04-builder23 - alias arm04-builder23.arm.fedoraproject.org - use defaultbuilders - check_command check-host-alive - address arm04-builder23.arm.fedoraproject.org - contact_groups fedora-sysadmin-email -} \ No newline at end of file diff --git a/roles/nagios/server/files/nagios/hosts/ask01.cfg b/roles/nagios/server/files/nagios/hosts/ask01.cfg deleted file mode 100644 index 36c9a73cb3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ask01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ask01 - alias ask01.phx2.fedoraproject.org - use defaulttemplate - address ask01.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/ask02.cfg b/roles/nagios/server/files/nagios/hosts/ask02.cfg deleted file mode 100644 index 9ee51fd887..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ask02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ask02 - alias ask02.phx2.fedoraproject.org - use defaulttemplate - address ask02.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/autocloud-backend01.cfg b/roles/nagios/server/files/nagios/hosts/autocloud-backend01.cfg deleted file mode 100644 index ae696754ff..0000000000 --- a/roles/nagios/server/files/nagios/hosts/autocloud-backend01.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name autocloud-backend-libvirt2 - alias autocloud-backend-libvirt2.phx2.fedoraproject.org - use defaulttemplate - address autocloud-backend-libvirt2.phx2.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hosts/autocloud-backend02.cfg b/roles/nagios/server/files/nagios/hosts/autocloud-backend02.cfg deleted file mode 100644 index d7d0f5db2c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/autocloud-backend02.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name autocloud-backend-vbox2 - alias autocloud-backend-vbox2.phx2.fedoraproject.org - use defaulttemplate - address autocloud-backend-vbox2.phx2.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hosts/autocloud-web01.cfg b/roles/nagios/server/files/nagios/hosts/autocloud-web01.cfg deleted file mode 100644 index c2766f21e9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/autocloud-web01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name autocloud-web01 - alias autocloud-web01.phx2.fedoraproject.org - use defaulttemplate - address autocloud-web01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/autocloud-web02.cfg b/roles/nagios/server/files/nagios/hosts/autocloud-web02.cfg deleted file mode 100644 index 880db282e3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/autocloud-web02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name autocloud-web02 - alias autocloud-web02.phx2.fedoraproject.org - use defaulttemplate - address autocloud-web02.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/autoqa01.cfg b/roles/nagios/server/files/nagios/hosts/autoqa01.cfg deleted file mode 100644 index 4a225d957c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/autoqa01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name autoqa01 -# alias autoqa01.qa.fedoraproject.org -# use autoqatemplate -# address autoqa01.qa.fedoraproject.org -# parents virthost-comm01 -#} diff --git a/roles/nagios/server/files/nagios/hosts/backup01-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/backup01-mgmt.cfg deleted file mode 100644 index ec003edf72..0000000000 --- a/roles/nagios/server/files/nagios/hosts/backup01-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name backup01.mgmt.fedoraproject.org - alias backup01.mgmt.fedoraproject.org - use mincheck - address backup01.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/backup01.cfg b/roles/nagios/server/files/nagios/hosts/backup01.cfg deleted file mode 100644 index f36d688024..0000000000 --- a/roles/nagios/server/files/nagios/hosts/backup01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name backup01 - alias backup01.phx2.fedoraproject.org - use defaulttemplate - address backup01.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/backup02.cfg b/roles/nagios/server/files/nagios/hosts/backup02.cfg deleted file mode 100644 index 4e8a027bc3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/backup02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name backup02 -# alias backup02.fedoraproject.org -# use defaulttemplate -# address backup02.fedoraproject.org -# parents ibiblio05 -#} diff --git a/roles/nagios/server/files/nagios/hosts/backup03-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/backup03-mgmt.cfg deleted file mode 100644 index e0d7878347..0000000000 --- a/roles/nagios/server/files/nagios/hosts/backup03-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name backup03.mgmt.fedoraproject.org -# alias backup03.mgmt.fedoraproject.org -# use mincheck -# address backup03.mgmt.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/backup03.cfg b/roles/nagios/server/files/nagios/hosts/backup03.cfg deleted file mode 100644 index c136994be0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/backup03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name backup03 -# alias backup03.phx2.fedoraproject.org -# use defaulttemplate -# address backup03.phx2.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/badges-backend01.cfg b/roles/nagios/server/files/nagios/hosts/badges-backend01.cfg deleted file mode 100644 index 4d10cb8096..0000000000 --- a/roles/nagios/server/files/nagios/hosts/badges-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name badges-backend01 - alias badges-backend01.phx2.fedoraproject.org - use defaulttemplate - address badges-backend01.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/badges-web01.cfg b/roles/nagios/server/files/nagios/hosts/badges-web01.cfg deleted file mode 100644 index c95236ed7c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/badges-web01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name badges-web01 - alias badges-web01.phx2.fedoraproject.org - use defaulttemplate - address badges-web01.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/badges-web02.cfg b/roles/nagios/server/files/nagios/hosts/badges-web02.cfg deleted file mode 100644 index b63aa3d106..0000000000 --- a/roles/nagios/server/files/nagios/hosts/badges-web02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name badges-web02 - alias badges-web02.phx2.fedoraproject.org - use defaulttemplate - address badges-web02.phx2.fedoraproject.org - parents virthost15 -} diff --git a/roles/nagios/server/files/nagios/hosts/basset01.cfg b/roles/nagios/server/files/nagios/hosts/basset01.cfg deleted file mode 100644 index e9a6d1069b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/basset01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name basset01 - alias basset01.phx2.fedoraproject.org - use defaulttemplate - address basset01.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/bastion-comm01.cfg b/roles/nagios/server/files/nagios/hosts/bastion-comm01.cfg deleted file mode 100644 index e3fdb57c33..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bastion-comm01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bastion-comm01 -# alias bastion-comm01.qa.fedoraproject.org -# use defaulttemplate -# address bastion-comm01.qa.fedoraproject.org -# parents virthost-comm01 -#} diff --git a/roles/nagios/server/files/nagios/hosts/bastion-vpn.cfg b/roles/nagios/server/files/nagios/hosts/bastion-vpn.cfg deleted file mode 100644 index 04e882d36e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bastion-vpn.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bastion-vpn - alias bastion.vpn.fedoraproject.org - use defaulttemplate - address bastion.vpn.fedoraproject.org - parents bastion02 -} diff --git a/roles/nagios/server/files/nagios/hosts/bastion01.cfg b/roles/nagios/server/files/nagios/hosts/bastion01.cfg deleted file mode 100644 index c0abe8f904..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bastion01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bastion01 - alias bastion01.phx2.fedoraproject.org - use defaulttemplate - address bastion01.phx2.fedoraproject.org - parents virthost02,fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bastion02.cfg b/roles/nagios/server/files/nagios/hosts/bastion02.cfg deleted file mode 100644 index 09e03bd6d9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bastion02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bastion02 - alias bastion02.phx2.fedoraproject.org - use defaulttemplate - address bastion02.phx2.fedoraproject.org - parents virthost21 -} diff --git a/roles/nagios/server/files/nagios/hosts/batcave01.cfg b/roles/nagios/server/files/nagios/hosts/batcave01.cfg deleted file mode 100644 index 7399fecac2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/batcave01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name batcave01 - alias batcave01.phx2.fedoraproject.org - use defaulttemplate - address batcave01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/bc02-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/bc02-mgmt.cfg deleted file mode 100644 index 3ac7c50319..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bc02-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bc02.mgmt.fedoraproject.org -# alias bc02.mgmt.fedoraproject.org -# use mincheck -# address bc02.mgmt.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/blockerbugs01.cfg b/roles/nagios/server/files/nagios/hosts/blockerbugs01.cfg deleted file mode 100644 index bdca92239a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/blockerbugs01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name blockerbugs01 - alias blockerbugs01.phx2.fedoraproject.org - use defaulttemplate - address blockerbugs01.phx2.fedoraproject.org - parents virthost15 -} diff --git a/roles/nagios/server/files/nagios/hosts/blockerbugs02.cfg b/roles/nagios/server/files/nagios/hosts/blockerbugs02.cfg deleted file mode 100644 index e51ec3e145..0000000000 --- a/roles/nagios/server/files/nagios/hosts/blockerbugs02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name blockerbugs02 - alias blockerbugs02.phx2.fedoraproject.org - use defaulttemplate - address blockerbugs02.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi-backend01-stg.cfg b/roles/nagios/server/files/nagios/hosts/bodhi-backend01-stg.cfg deleted file mode 100644 index 4c17e1d733..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi-backend01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bodhi-backend01.stg - alias bodhi-backend01.stg.phx2.fedoraproject.org - use defaulttemplate - address bodhi-backend01.stg.phx2.fedoraproject.org - parents virthost12 -} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi-backend01.cfg b/roles/nagios/server/files/nagios/hosts/bodhi-backend01.cfg deleted file mode 100644 index ee100b743b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bodhi-backend01 - alias bodhi-backend01.phx2.fedoraproject.org - use defaulttemplate - address bodhi-backend01.phx2.fedoraproject.org - parents bvirthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi-backend02.cfg b/roles/nagios/server/files/nagios/hosts/bodhi-backend02.cfg deleted file mode 100644 index 1d78287d05..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi-backend02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bodhi-backend02 - alias bodhi-backend02.phx2.fedoraproject.org - use defaulttemplate - address bodhi-backend02.phx2.fedoraproject.org - parents bvirthost06 -} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi-backend03.cfg b/roles/nagios/server/files/nagios/hosts/bodhi-backend03.cfg deleted file mode 100644 index a345e852b4..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi-backend03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bodhi-backend03 -# alias bodhi-backend03.phx2.fedoraproject.org -# use defaulttemplate -# address bodhi-backend03.phx2.fedoraproject.org -# parents bvirthost09 -#} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi01.cfg b/roles/nagios/server/files/nagios/hosts/bodhi01.cfg deleted file mode 100644 index 64315b2e62..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bodhi01 -# alias bodhi01.phx2.fedoraproject.org -# use defaulttemplate -# address bodhi01.phx2.fedoraproject.org -# parents virthost01 -#} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi02.cfg b/roles/nagios/server/files/nagios/hosts/bodhi02.cfg deleted file mode 100644 index 52364d047b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bodhi02 -# alias bodhi02.phx2.fedoraproject.org -# use defaulttemplate -# address bodhi02.phx2.fedoraproject.org -# parents virthost03 -#} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi03.cfg b/roles/nagios/server/files/nagios/hosts/bodhi03.cfg deleted file mode 100644 index eb2657c988..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bodhi03 - alias bodhi03.phx2.fedoraproject.org - use defaulttemplate - address bodhi03.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/bodhi04.cfg b/roles/nagios/server/files/nagios/hosts/bodhi04.cfg deleted file mode 100644 index cc1907d0b8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhi04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bodhi04 - alias bodhi04.phx2.fedoraproject.org - use defaulttemplate - address bodhi04.phx2.fedoraproject.org - parents virthost02 -} diff --git a/roles/nagios/server/files/nagios/hosts/bodhost01.cfg b/roles/nagios/server/files/nagios/hosts/bodhost01.cfg deleted file mode 100644 index 9ce365433a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bodhost01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bodhost01 -# alias bodhost01.fedoraproject.org -# use defaulttemplate -# address bodhost01.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/branched-composer.cfg b/roles/nagios/server/files/nagios/hosts/branched-composer.cfg deleted file mode 100644 index 4ba59c4864..0000000000 --- a/roles/nagios/server/files/nagios/hosts/branched-composer.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name branched-composer - alias branched-composer.phx2.fedoraproject.org - use defaulttemplate - address branched-composer.phx2.fedoraproject.org - parents bvirthost08 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/bugyou01.cfg b/roles/nagios/server/files/nagios/hosts/bugyou01.cfg deleted file mode 100644 index 5ecc9e5dd7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bugyou01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bugyou01 - alias bugyou01.phx2.fedoraproject.org - use defaulttemplate - address bugyou01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/bugzilla2fedmsg01.cfg b/roles/nagios/server/files/nagios/hosts/bugzilla2fedmsg01.cfg deleted file mode 100644 index f489e60775..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bugzilla2fedmsg01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bugzilla2fedmsg01 - alias bugzilla2fedmsg01.phx2.fedoraproject.org - use defaulttemplate - address bugzilla2fedmsg01.phx2.fedoraproject.org - parents virthost17 -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-01.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-01.cfg deleted file mode 100644 index 562ad08979..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-01.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-01.phx2.fedoraproject.org - host_name buildvm-01 - use defaultbuilders - check_command check-host-alive - address buildvm-01.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-02.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-02.cfg deleted file mode 100644 index 32056e0e57..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-02.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-02.phx2.fedoraproject.org - host_name buildvm-02 - use defaultbuilders - check_command check-host-alive - address buildvm-02.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-03.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-03.cfg deleted file mode 100644 index a6ba46defa..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-03.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-03.phx2.fedoraproject.org - host_name buildvm-03 - use defaultbuilders - check_command check-host-alive - address buildvm-03.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-04.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-04.cfg deleted file mode 100644 index d5e9c85799..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-04.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-04.phx2.fedoraproject.org - host_name buildvm-04 - use defaultbuilders - check_command check-host-alive - address buildvm-04.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-05.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-05.cfg deleted file mode 100644 index 840c99096d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-05.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-05.phx2.fedoraproject.org - host_name buildvm-05 - use defaultbuilders - check_command check-host-alive - address buildvm-05.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-06.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-06.cfg deleted file mode 100644 index 60d14cb19e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-06.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-06.phx2.fedoraproject.org - host_name buildvm-06 - use defaultbuilders - check_command check-host-alive - address buildvm-06.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-07.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-07.cfg deleted file mode 100644 index eba184a2ba..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-07.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-07.phx2.fedoraproject.org - host_name buildvm-07 - use defaultbuilders - check_command check-host-alive - address buildvm-07.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-08.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-08.cfg deleted file mode 100644 index d3a0ba9c8c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-08.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-08.phx2.fedoraproject.org - host_name buildvm-08 - use defaultbuilders - check_command check-host-alive - address buildvm-08.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-09.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-09.cfg deleted file mode 100644 index 780ef9a0af..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-09.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-09.phx2.fedoraproject.org - host_name buildvm-09 - use defaultbuilders - check_command check-host-alive - address buildvm-09.phx2.fedoraproject.org - parents buildvmhost-01 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-10.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-10.cfg deleted file mode 100644 index 6dd6d117bf..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-10.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-10.phx2.fedoraproject.org - host_name buildvm-10 - use defaultbuilders - check_command check-host-alive - address buildvm-10.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-11.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-11.cfg deleted file mode 100644 index 244df67d65..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-11.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-11.phx2.fedoraproject.org - host_name buildvm-11 - use defaultbuilders - check_command check-host-alive - address buildvm-11.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-12.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-12.cfg deleted file mode 100644 index b4ef269475..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-12.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-12.phx2.fedoraproject.org - host_name buildvm-12 - use defaultbuilders - check_command check-host-alive - address buildvm-12.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-13.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-13.cfg deleted file mode 100644 index d36882477c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-13.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-13.phx2.fedoraproject.org - host_name buildvm-13 - use defaultbuilders - check_command check-host-alive - address buildvm-13.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-14.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-14.cfg deleted file mode 100644 index e8504ad1dc..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-14.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-14.phx2.fedoraproject.org - host_name buildvm-14 - use defaultbuilders - check_command check-host-alive - address buildvm-14.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-15.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-15.cfg deleted file mode 100644 index 9cae175fad..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-15.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-15.phx2.fedoraproject.org - host_name buildvm-15 - use defaultbuilders - check_command check-host-alive - address buildvm-15.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-16.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-16.cfg deleted file mode 100644 index 24683eb2e7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-16.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-16.phx2.fedoraproject.org - host_name buildvm-16 - use defaultbuilders - check_command check-host-alive - address buildvm-16.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-17.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-17.cfg deleted file mode 100644 index f1473464cd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-17.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-17.phx2.fedoraproject.org - host_name buildvm-17 - use defaultbuilders - check_command check-host-alive - address buildvm-17.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-18.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-18.cfg deleted file mode 100644 index 056357943b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-18.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-18.phx2.fedoraproject.org - host_name buildvm-18 - use defaultbuilders - check_command check-host-alive - address buildvm-18.phx2.fedoraproject.org - parents buildvmhost-02 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-19.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-19.cfg deleted file mode 100644 index 1257dc4e88..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-19.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-19.phx2.fedoraproject.org - host_name buildvm-19 - use defaultbuilders - check_command check-host-alive - address buildvm-19.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-20.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-20.cfg deleted file mode 100644 index 42eafd4293..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-20.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-20.phx2.fedoraproject.org - host_name buildvm-20 - use defaultbuilders - check_command check-host-alive - address buildvm-20.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-21.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-21.cfg deleted file mode 100644 index 90f7a40459..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-21.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-21.phx2.fedoraproject.org - host_name buildvm-21 - use defaultbuilders - check_command check-host-alive - address buildvm-21.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-22.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-22.cfg deleted file mode 100644 index 526de9dc89..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-22.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-22.phx2.fedoraproject.org - host_name buildvm-22 - use defaultbuilders - check_command check-host-alive - address buildvm-22.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-23.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-23.cfg deleted file mode 100644 index 44ba5dac82..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-23.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-23.phx2.fedoraproject.org - host_name buildvm-23 - use defaultbuilders - check_command check-host-alive - address buildvm-23.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-24.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-24.cfg deleted file mode 100644 index bda69e8817..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-24.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-24.phx2.fedoraproject.org - host_name buildvm-24 - use defaultbuilders - check_command check-host-alive - address buildvm-24.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-25.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-25.cfg deleted file mode 100644 index f1561b565a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-25.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-25.phx2.fedoraproject.org - host_name buildvm-25 - use defaultbuilders - check_command check-host-alive - address buildvm-25.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-26.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-26.cfg deleted file mode 100644 index 78f689f16c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-26.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-26.phx2.fedoraproject.org - host_name buildvm-26 - use defaultbuilders - check_command check-host-alive - address buildvm-26.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvm-27.cfg b/roles/nagios/server/files/nagios/hosts/buildvm-27.cfg deleted file mode 100644 index 9e57df4f20..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvm-27.cfg +++ /dev/null @@ -1,9 +0,0 @@ -define host { - alias buildvm-27.phx2.fedoraproject.org - host_name buildvm-27 - use defaultbuilders - check_command check-host-alive - address buildvm-27.phx2.fedoraproject.org - parents buildvmhost-12 - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvmhost-01.cfg b/roles/nagios/server/files/nagios/hosts/buildvmhost-01.cfg deleted file mode 100644 index 4063c3c285..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvmhost-01.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - alias buildvmhost-01.phx2.fedoraproject.org - host_name buildvmhost-01 - use defaultbuilders - check_command check-host-alive - address buildvmhost-01.phx2.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvmhost-02.cfg b/roles/nagios/server/files/nagios/hosts/buildvmhost-02.cfg deleted file mode 100644 index a504c9599a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvmhost-02.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - alias buildvmhost-02.phx2.fedoraproject.org - host_name buildvmhost-02 - use defaultbuilders - check_command check-host-alive - address buildvmhost-02.phx2.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvmhost-03.cfg b/roles/nagios/server/files/nagios/hosts/buildvmhost-03.cfg deleted file mode 100644 index 99b82987d9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvmhost-03.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - alias buildvmhost-03.phx2.fedoraproject.org - host_name buildvmhost-03 - use defaultbuilders - check_command check-host-alive - address buildvmhost-03.phx2.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvmhost-04.cfg b/roles/nagios/server/files/nagios/hosts/buildvmhost-04.cfg deleted file mode 100644 index d71241cc88..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvmhost-04.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - alias buildvmhost-04.phx2.fedoraproject.org - host_name buildvmhost-04 - use defaultbuilders - check_command check-host-alive - address buildvmhost-04.phx2.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/buildvmhost-10.cfg b/roles/nagios/server/files/nagios/hosts/buildvmhost-10.cfg deleted file mode 100644 index c34359f1bb..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvmhost-10.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# alias buildvmhost-10.phx2.fedoraproject.org -# host_name buildvmhost-10 -# use defaultbuilders -# check_command check-host-alive -# address buildvmhost-10.phx2.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/buildvmhost-11.cfg b/roles/nagios/server/files/nagios/hosts/buildvmhost-11.cfg deleted file mode 100644 index fb575efe78..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvmhost-11.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# alias buildvmhost-11.phx2.fedoraproject.org -# host_name buildvmhost-11 -# use defaultbuilders -# check_command check-host-alive -# address buildvmhost-11.phx2.fedoraproject.org -# contact_groups fedora-sysadmin-email -#} diff --git a/roles/nagios/server/files/nagios/hosts/buildvmhost-12.cfg b/roles/nagios/server/files/nagios/hosts/buildvmhost-12.cfg deleted file mode 100644 index 41b69cc8ab..0000000000 --- a/roles/nagios/server/files/nagios/hosts/buildvmhost-12.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - alias buildvmhost-12.phx2.fedoraproject.org - host_name buildvmhost-12 - use defaultbuilders - check_command check-host-alive - address buildvmhost-12.phx2.fedoraproject.org - contact_groups fedora-sysadmin-email -} diff --git a/roles/nagios/server/files/nagios/hosts/busgateway01-stg.cfg b/roles/nagios/server/files/nagios/hosts/busgateway01-stg.cfg deleted file mode 100644 index beeabb0a4a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/busgateway01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name busgateway01.stg - alias busgateway01.stg.phx2.fedoraproject.org - use defaulttemplate - address busgateway01.stg.phx2.fedoraproject.org - parents virthost16 -} diff --git a/roles/nagios/server/files/nagios/hosts/busgateway01.cfg b/roles/nagios/server/files/nagios/hosts/busgateway01.cfg deleted file mode 100644 index 2f4cddac73..0000000000 --- a/roles/nagios/server/files/nagios/hosts/busgateway01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name busgateway01 - alias busgateway01.phx2.fedoraproject.org - use defaulttemplate - address busgateway01.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost01-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost01-mgmt.cfg deleted file mode 100644 index ca1cbaf9f6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost01-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost01.mgmt.fedoraproject.org - alias bvirthost01.mgmt.fedoraproject.org - use mincheck - address bvirthost01.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost01.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost01.cfg deleted file mode 100644 index 1795fb21b8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost01 - alias bvirthost01.phx2.fedoraproject.org - use defaulttemplate - address bvirthost01.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost03.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost03.cfg deleted file mode 100644 index c642fd119c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost03 - alias bvirthost03.phx2.fedoraproject.org - use defaulttemplate - address bvirthost03.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost04-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost04-mgmt.cfg deleted file mode 100644 index 4791bf80db..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost04-mgmt.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name bvirthost04.mgmt.fedoraproject.org -# alias bvirthost04.mgmt.fedoraproject.org -# use mincheck -# address bvirthost04.mgmt.fedoraproject.org -# parents fwsm01-gw -#} - diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost04.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost04.cfg deleted file mode 100644 index f32c9ed555..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bvirthost04 -# alias bvirthost04.phx2.fedoraproject.org -# use defaulttemplate -# address bvirthost04.phx2.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost06.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost06.cfg deleted file mode 100644 index 77a8e9f205..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost06.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost06 - alias bvirthost06.phx2.fedoraproject.org - use defaulttemplate - address bvirthost06.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost07-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost07-mgmt.cfg deleted file mode 100644 index a1cb131ace..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost07-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bvirthost07.mgmt.fedoraproject.org -# alias bvirthost07.mgmt.fedoraproject.org -# use mincheck -# address bvirthost07.mgmt.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost07.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost07.cfg deleted file mode 100644 index 3a1a760146..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost07.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name bvirthost07 -# alias bvirthost07.phx2.fedoraproject.org -# use defaulttemplate -# address bvirthost07.phx2.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost08.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost08.cfg deleted file mode 100644 index bce8ce661f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost08.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost08 - alias bvirthost08.phx2.fedoraproject.org - use defaulttemplate - address bvirthost08.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost09.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost09.cfg deleted file mode 100644 index 17d0cba236..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost09.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost09 - alias bvirthost09.phx2.fedoraproject.org - use defaulttemplate - address bvirthost09.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost10.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost10.cfg deleted file mode 100644 index 4a5c4d82ab..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost10.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost10 - alias bvirthost10.phx2.fedoraproject.org - use defaulttemplate - address bvirthost10.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/bvirthost11.cfg b/roles/nagios/server/files/nagios/hosts/bvirthost11.cfg deleted file mode 100644 index c5ee7dbbec..0000000000 --- a/roles/nagios/server/files/nagios/hosts/bvirthost11.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name bvirthost11 - alias bvirthost11.phx2.fedoraproject.org - use defaulttemplate - address bvirthost11.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/cloud-gw.cfg b/roles/nagios/server/files/nagios/hosts/cloud-gw.cfg deleted file mode 100644 index 9d92b2b592..0000000000 --- a/roles/nagios/server/files/nagios/hosts/cloud-gw.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name cloud-gw - alias cloud gateway - use mincheck - check_command check-host-alive - address 209.132.184.254 - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/collab03.cfg b/roles/nagios/server/files/nagios/hosts/collab03.cfg deleted file mode 100644 index 400f504997..0000000000 --- a/roles/nagios/server/files/nagios/hosts/collab03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name collab03 -# alias collab03.fedoraproject.org -# use defaulttemplate -# address 140.211.169.198 -# parents osuosl03 -#} diff --git a/roles/nagios/server/files/nagios/hosts/collab04.cfg b/roles/nagios/server/files/nagios/hosts/collab04.cfg deleted file mode 100644 index e6a81ba4cc..0000000000 --- a/roles/nagios/server/files/nagios/hosts/collab04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name collab04 -# alias collab04.fedoraproject.org -# use defaulttemplate -# address 152.19.134.193 -# parents ibiblio02 -#} diff --git a/roles/nagios/server/files/nagios/hosts/coloamer01.cfg b/roles/nagios/server/files/nagios/hosts/coloamer01.cfg deleted file mode 100644 index ebe39e0b1f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/coloamer01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name coloamer01 - alias coloamer01.fedoraproject.org - use defaulttemplate - address coloamer01.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/copr-be-dev.cfg b/roles/nagios/server/files/nagios/hosts/copr-be-dev.cfg deleted file mode 100644 index 3fcd95f64c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/copr-be-dev.cfg +++ /dev/null @@ -1,6 +0,0 @@ -#define host { -# host_name copr-be-dev -# alias copr-be-dev.cloud.fedoraproject.org -# use defaulttemplate -# address copr-be-dev.cloud.fedoraproject.org -#} diff --git a/roles/nagios/server/files/nagios/hosts/copr-be.cfg b/roles/nagios/server/files/nagios/hosts/copr-be.cfg deleted file mode 100644 index 7b663d4c1d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/copr-be.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name copr-be - alias copr-be.cloud.fedoraproject.org - use defaulttemplate - address copr-be.cloud.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hosts/darkserver01.cfg b/roles/nagios/server/files/nagios/hosts/darkserver01.cfg deleted file mode 100644 index 813d8c9248..0000000000 --- a/roles/nagios/server/files/nagios/hosts/darkserver01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name darkserver01 -# alias darkserver01.phx2.fedoraproject.org -# use defaulttemplate -# address darkserver01.phx2.fedoraproject.org -# parents virthost08 -#} diff --git a/roles/nagios/server/files/nagios/hosts/darkserver02.cfg b/roles/nagios/server/files/nagios/hosts/darkserver02.cfg deleted file mode 100644 index 8baa64f18f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/darkserver02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name darkserver02 - alias darkserver02.phx2.fedoraproject.org - use defaulttemplate - address darkserver02.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/datagrepper01.cfg b/roles/nagios/server/files/nagios/hosts/datagrepper01.cfg deleted file mode 100644 index e9a3510f0f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/datagrepper01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name datagrepper01 - alias datagrepper01.phx2.fedoraproject.org - use defaulttemplate - address datagrepper01.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/datagrepper02.cfg b/roles/nagios/server/files/nagios/hosts/datagrepper02.cfg deleted file mode 100644 index ecbbaa42d1..0000000000 --- a/roles/nagios/server/files/nagios/hosts/datagrepper02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name datagrepper02 - alias datagrepper02.phx2.fedoraproject.org - use defaulttemplate - address datagrepper02.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/db-datanommer02.cfg b/roles/nagios/server/files/nagios/hosts/db-datanommer02.cfg deleted file mode 100644 index bce2d426ae..0000000000 --- a/roles/nagios/server/files/nagios/hosts/db-datanommer02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name db-datanommer02 - alias db-datanommer02.phx2.fedoraproject.org - use defaulttemplate - address db-datanommer02.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/db-fas01.cfg b/roles/nagios/server/files/nagios/hosts/db-fas01.cfg deleted file mode 100644 index fb2b60131c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/db-fas01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name db-fas01 - alias db-fas01.phx2.fedoraproject.org - use defaulttemplate - address db-fas01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/db-koji01.cfg b/roles/nagios/server/files/nagios/hosts/db-koji01.cfg deleted file mode 100644 index 346d353eee..0000000000 --- a/roles/nagios/server/files/nagios/hosts/db-koji01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name db-koji01 - alias db-koji01.phx2.fedoraproject.org - use defaulttemplate - address db-koji01.phx2.fedoraproject.org - parents bvirthost09 -} diff --git a/roles/nagios/server/files/nagios/hosts/db01.cfg b/roles/nagios/server/files/nagios/hosts/db01.cfg deleted file mode 100644 index 8024c59213..0000000000 --- a/roles/nagios/server/files/nagios/hosts/db01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name db01 - alias db01.phx2.fedoraproject.org - use defaulttemplate - address db01.phx2.fedoraproject.org - parents virthost02 -} diff --git a/roles/nagios/server/files/nagios/hosts/db03.cfg b/roles/nagios/server/files/nagios/hosts/db03.cfg deleted file mode 100644 index 04d4f27580..0000000000 --- a/roles/nagios/server/files/nagios/hosts/db03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name db03 - alias db03.phx2.fedoraproject.org - use defaulttemplate - address db03.phx2.fedoraproject.org - parents virthost02 -} diff --git a/roles/nagios/server/files/nagios/hosts/db05.cfg b/roles/nagios/server/files/nagios/hosts/db05.cfg deleted file mode 100644 index 151397c748..0000000000 --- a/roles/nagios/server/files/nagios/hosts/db05.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name db05 -# alias db05.phx2.fedoraproject.org -# use defaulttemplate -# address db05.phx2.fedoraproject.org -# parents virthost15 -#} diff --git a/roles/nagios/server/files/nagios/hosts/dedicatedsolutions01.cfg b/roles/nagios/server/files/nagios/hosts/dedicatedsolutions01.cfg deleted file mode 100644 index 412aa97e25..0000000000 --- a/roles/nagios/server/files/nagios/hosts/dedicatedsolutions01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name dedicatedsolutions01 - alias dedicatedsolutions01.fedoraproject.org - use defaulttemplate - address dedicatedsolutions01.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/dhcp01.cfg b/roles/nagios/server/files/nagios/hosts/dhcp01.cfg deleted file mode 100644 index 3b11b1d403..0000000000 --- a/roles/nagios/server/files/nagios/hosts/dhcp01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name dhcp01 - alias dhcp01.phx2.fedoraproject.org - use defaulttemplate - address dhcp01.phx2.fedoraproject.org - parents bvirthost09 -} diff --git a/roles/nagios/server/files/nagios/hosts/docker-registry01.cfg b/roles/nagios/server/files/nagios/hosts/docker-registry01.cfg deleted file mode 100644 index 6d9a83be49..0000000000 --- a/roles/nagios/server/files/nagios/hosts/docker-registry01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name docker-registry01 - alias docker-registry01.phx2.fedoraproject.org - use defaulttemplate - address docker-registry01.phx2.fedoraproject.org - parents bvirthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/download-ib01.cfg b/roles/nagios/server/files/nagios/hosts/download-ib01.cfg deleted file mode 100644 index a80189543e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download-ib01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download-ib01 - alias download-ib01.fedoraproject.org - use defaulttemplate - address download-ib01.fedoraproject.org - parents ibiblio03 -} diff --git a/roles/nagios/server/files/nagios/hosts/download-ib02.cfg b/roles/nagios/server/files/nagios/hosts/download-ib02.cfg deleted file mode 100644 index 73956a8855..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download-ib02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name download-ib02 -# alias download-ib02.fedoraproject.org -# use defaulttemplate -# address download-ib02.fedoraproject.org -# parents ibiblio04 -#} diff --git a/roles/nagios/server/files/nagios/hosts/download-rdu01.cfg b/roles/nagios/server/files/nagios/hosts/download-rdu01.cfg deleted file mode 100644 index 2299fd7463..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download-rdu01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download-rdu01 - alias download-rdu01.vpn.fedoraproject.org - use defaulttemplate - address download-rdu01.vpn.fedoraproject.org - parents bastion-vpn -} diff --git a/roles/nagios/server/files/nagios/hosts/download-rdu02.cfg b/roles/nagios/server/files/nagios/hosts/download-rdu02.cfg deleted file mode 100644 index 9e34528583..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download-rdu02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name download-rdu02 -# alias download-rdu02.vpn.fedoraproject.org -# use defaulttemplate -# address download-rdu02.vpn.fedoraproject.org -# parents bastion-vpn -# } diff --git a/roles/nagios/server/files/nagios/hosts/download-rdu03.cfg b/roles/nagios/server/files/nagios/hosts/download-rdu03.cfg deleted file mode 100644 index 0216045119..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download-rdu03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name download-rdu03 -# alias download-rdu03.vpn.fedoraproject.org -# use defaulttemplate -# address download-rdu03.vpn.fedoraproject.org -# parents bastion-vpn -# } diff --git a/roles/nagios/server/files/nagios/hosts/download01-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/download01-mgmt.cfg deleted file mode 100644 index 4c16a99c4b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download01-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download01.mgmt.fedoraproject.org - alias download01.mgmt.fedoraproject.org - use mincheck - address download01.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download01.cfg b/roles/nagios/server/files/nagios/hosts/download01.cfg deleted file mode 100644 index dc52012506..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download01 - alias download01.phx2.fedoraproject.org - use defaulttemplate - address download01.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download02-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/download02-mgmt.cfg deleted file mode 100644 index b8df4849b4..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download02-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download02.mgmt.fedoraproject.org - alias download02.mgmt.fedoraproject.org - use mincheck - address download02.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download02.cfg b/roles/nagios/server/files/nagios/hosts/download02.cfg deleted file mode 100644 index f9a3b02132..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download02 - alias download02.phx2.fedoraproject.org - use defaulttemplate - address download02.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download03-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/download03-mgmt.cfg deleted file mode 100644 index 7347caa3d7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download03-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download03.mgmt.fedoraproject.org - alias download03.mgmt.fedoraproject.org - use mincheck - address download03.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download03.cfg b/roles/nagios/server/files/nagios/hosts/download03.cfg deleted file mode 100644 index 095c66737e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download03 - alias download03.phx2.fedoraproject.org - use defaulttemplate - address download03.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download04-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/download04-mgmt.cfg deleted file mode 100644 index b748380738..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download04-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download04.mgmt.fedoraproject.org - alias download04.mgmt.fedoraproject.org - use mincheck - address download04.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download04.cfg b/roles/nagios/server/files/nagios/hosts/download04.cfg deleted file mode 100644 index 32a8c66b40..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download04 - alias download04.phx2.fedoraproject.org - use defaulttemplate - address download04.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download05-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/download05-mgmt.cfg deleted file mode 100644 index 203c9a6d33..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download05-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download05.mgmt.fedoraproject.org - alias download05.mgmt.fedoraproject.org - use mincheck - address download05.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/download05.cfg b/roles/nagios/server/files/nagios/hosts/download05.cfg deleted file mode 100644 index 3ba3e3afea..0000000000 --- a/roles/nagios/server/files/nagios/hosts/download05.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name download05 - alias download05.phx2.fedoraproject.org - use defaulttemplate - address download05.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fakefas01.cfg b/roles/nagios/server/files/nagios/hosts/fakefas01.cfg deleted file mode 100644 index 3a0a8477a3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fakefas01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name fakefas01 -# alias fakefas01.fedoraproject.org -# use defaulttemplate -# address fakefas01.fedoraproject.org -# parents osuosl01 -#} diff --git a/roles/nagios/server/files/nagios/hosts/fas01-stg.cfg b/roles/nagios/server/files/nagios/hosts/fas01-stg.cfg deleted file mode 100644 index 5ae6371ef4..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fas01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fas01.stg - alias fas01.stg.phx2.fedoraproject.org - use defaulttemplate - address fas01.stg.phx2.fedoraproject.org - parents virthost20 -} diff --git a/roles/nagios/server/files/nagios/hosts/fas01.cfg b/roles/nagios/server/files/nagios/hosts/fas01.cfg deleted file mode 100644 index 22baa0a2bb..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fas01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fas01 - alias fas01.phx2.fedoraproject.org - use defaulttemplate - address fas01.phx2.fedoraproject.org - parents virthost15 -} diff --git a/roles/nagios/server/files/nagios/hosts/fas02.cfg b/roles/nagios/server/files/nagios/hosts/fas02.cfg deleted file mode 100644 index 7af155fd12..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fas02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fas02 - alias fas02.phx2.fedoraproject.org - use defaulttemplate - address fas02.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/fas03.cfg b/roles/nagios/server/files/nagios/hosts/fas03.cfg deleted file mode 100644 index 3986cfc5f7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fas03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fas03 - alias fas03.phx2.fedoraproject.org - use defaulttemplate - address fas03.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud03-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud03-mgmt.cfg deleted file mode 100644 index e048228811..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud03-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud03.mgmt.fedoraproject.org - alias fed-cloud03.mgmt.fedoraproject.org - use mincheck - address fed-cloud03.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud03.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud03.cfg deleted file mode 100644 index 1918e70f04..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud03 - alias fed-cloud03.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud03.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud04-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud04-mgmt.cfg deleted file mode 100644 index 0056843af3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud04-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud04.mgmt.fedoraproject.org - alias fed-cloud04.mgmt.fedoraproject.org - use mincheck - address fed-cloud04.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud04.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud04.cfg deleted file mode 100644 index a79e0362f9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud04 - alias fed-cloud04.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud04.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud05-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud05-mgmt.cfg deleted file mode 100644 index e1b538a20c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud05-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud05.mgmt.fedoraproject.org - alias fed-cloud05.mgmt.fedoraproject.org - use mincheck - address fed-cloud05.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud05.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud05.cfg deleted file mode 100644 index 8be551fbfc..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud05.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud05 - alias fed-cloud05.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud05.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud06-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud06-mgmt.cfg deleted file mode 100644 index 1ec10a09f7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud06-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud06.mgmt.fedoraproject.org - alias fed-cloud06.mgmt.fedoraproject.org - use mincheck - address fed-cloud06.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud06.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud06.cfg deleted file mode 100644 index 96133f881a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud06.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud06 - alias fed-cloud06.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud06.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud07-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud07-mgmt.cfg deleted file mode 100644 index ee85c11957..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud07-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud07.mgmt.fedoraproject.org - alias fed-cloud07.mgmt.fedoraproject.org - use mincheck - address fed-cloud07.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud07.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud07.cfg deleted file mode 100644 index 54166eb45d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud07.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud07 - alias fed-cloud07.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud07.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud08-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud08-mgmt.cfg deleted file mode 100644 index 787e9952f5..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud08-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud08.mgmt.fedoraproject.org - alias fed-cloud08.mgmt.fedoraproject.org - use mincheck - address fed-cloud08.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud08.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud08.cfg deleted file mode 100644 index 28c2473e31..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud08.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud08 - alias fed-cloud08.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud08.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud09-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud09-mgmt.cfg deleted file mode 100644 index bbd4f59e9e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud09-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud09.mgmt.fedoraproject.org - alias fed-cloud09.mgmt.fedoraproject.org - use mincheck - address fed-cloud09.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud09.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud09.cfg deleted file mode 100644 index 1e3edcf517..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud09.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud09 - alias fed-cloud09.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud09.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud10-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud10-mgmt.cfg deleted file mode 100644 index fabd5bea0a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud10-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud10.mgmt.fedoraproject.org - alias fed-cloud10.mgmt.fedoraproject.org - use mincheck - address fed-cloud10.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud10.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud10.cfg deleted file mode 100644 index de9df2ec58..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud10.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud10 - alias fed-cloud10.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud10.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud11-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud11-mgmt.cfg deleted file mode 100644 index 11adbe69b6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud11-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud11.mgmt.fedoraproject.org - alias fed-cloud11.mgmt.fedoraproject.org - use mincheck - address fed-cloud11.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud11.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud11.cfg deleted file mode 100644 index 5ce596247e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud11.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud11 - alias fed-cloud11.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud11.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud12-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud12-mgmt.cfg deleted file mode 100644 index 62b7d8a114..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud12-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud12.mgmt.fedoraproject.org - alias fed-cloud12.mgmt.fedoraproject.org - use mincheck - address fed-cloud12.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud12.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud12.cfg deleted file mode 100644 index 3be54be33e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud12.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud12 - alias fed-cloud12.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud12.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud13-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud13-mgmt.cfg deleted file mode 100644 index 494c480f61..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud13-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud13.mgmt.fedoraproject.org - alias fed-cloud13.mgmt.fedoraproject.org - use mincheck - address fed-cloud13.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud13.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud13.cfg deleted file mode 100644 index 3a493197fd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud13.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud13 - alias fed-cloud13.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud13.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud14-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud14-mgmt.cfg deleted file mode 100644 index ed664a10ed..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud14-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud14.mgmt.fedoraproject.org - alias fed-cloud14.mgmt.fedoraproject.org - use mincheck - address fed-cloud14.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud14.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud14.cfg deleted file mode 100644 index 7bf8801164..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud14.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud14 - alias fed-cloud14.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud14.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud15-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud15-mgmt.cfg deleted file mode 100644 index a42e7754d5..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud15-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud15.mgmt.fedoraproject.org - alias fed-cloud15.mgmt.fedoraproject.org - use mincheck - address fed-cloud15.mgmt.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fed-cloud15.cfg b/roles/nagios/server/files/nagios/hosts/fed-cloud15.cfg deleted file mode 100644 index a919e6c4c7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fed-cloud15.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fed-cloud15 - alias fed-cloud15.cloud.fedoraproject.org - use defaulttemplate - address fed-cloud15.cloud.fedoraproject.org - parents cloud-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/fedimg01.cfg b/roles/nagios/server/files/nagios/hosts/fedimg01.cfg deleted file mode 100644 index 231afeb753..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fedimg01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fedimg01 - alias fedimg01.phx2.fedoraproject.org - use defaulttemplate - address fedimg01.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/fedocal01.cfg b/roles/nagios/server/files/nagios/hosts/fedocal01.cfg deleted file mode 100644 index 8cc5a13520..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fedocal01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fedocal01 - alias fedocal01.phx2.fedoraproject.org - use defaulttemplate - address fedocal01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/fedocal02.cfg b/roles/nagios/server/files/nagios/hosts/fedocal02.cfg deleted file mode 100644 index 2ca53dbcf6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fedocal02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fedocal02 - alias fedocal02.phx2.fedoraproject.org - use defaulttemplate - address fedocal02.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/fwsm01-gw.cfg b/roles/nagios/server/files/nagios/hosts/fwsm01-gw.cfg deleted file mode 100644 index 5f1c3d476f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/fwsm01-gw.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name fwsm01-gw - alias PHX2 Router - use defaulttemplate - check_command check-host-alive - address 10.5.126.254 -} diff --git a/roles/nagios/server/files/nagios/hosts/github2fedmsg01.cfg b/roles/nagios/server/files/nagios/hosts/github2fedmsg01.cfg deleted file mode 100644 index dad5572a7f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/github2fedmsg01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name github2fedmsg01 - alias github2fedmsg01.phx2.fedoraproject.org - use defaulttemplate - address github2fedmsg01.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/host1plus01.cfg b/roles/nagios/server/files/nagios/hosts/host1plus01.cfg deleted file mode 100644 index 06f1e5a296..0000000000 --- a/roles/nagios/server/files/nagios/hosts/host1plus01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name host1plus01 -# alias host1plus01.fedoraproject.org -# use defaulttemplate -# address host1plus01.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/hosted-lists01.cfg b/roles/nagios/server/files/nagios/hosts/hosted-lists01.cfg deleted file mode 100644 index 767892a44f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/hosted-lists01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name hosted-lists01 -# alias hosted-lists01.fedoraproject.org -# use defaulttemplate -# address 85.236.55.8 -# parents internetx01 -#} diff --git a/roles/nagios/server/files/nagios/hosts/hosted03.cfg b/roles/nagios/server/files/nagios/hosts/hosted03.cfg deleted file mode 100644 index 668e039c91..0000000000 --- a/roles/nagios/server/files/nagios/hosts/hosted03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name hosted03 -# alias hosted03.fedoraproject.org -# use defaulttemplate -# address 140.211.169.199 -# parents osuosl03 -#} diff --git a/roles/nagios/server/files/nagios/hosts/hosted04.cfg b/roles/nagios/server/files/nagios/hosts/hosted04.cfg deleted file mode 100644 index a3d285073c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/hosted04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name hosted04 -# alias hosted04.fedoraproject.org -# use defaulttemplate -# address 152.19.134.149 -# parents ibiblio02 -#} diff --git a/roles/nagios/server/files/nagios/hosts/hotness01.cfg b/roles/nagios/server/files/nagios/hosts/hotness01.cfg deleted file mode 100644 index 38aa62f406..0000000000 --- a/roles/nagios/server/files/nagios/hosts/hotness01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name hotness01 - alias hotness01.phx2.fedoraproject.org - use defaulttemplate - address hotness01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/ibiblio-gw.cfg b/roles/nagios/server/files/nagios/hosts/ibiblio-gw.cfg deleted file mode 100644 index 259258755e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ibiblio-gw.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name ibiblio-gw - alias ibiblio gateway - use mincheck - check_command check-host-alive - address 152.19.134.129 - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/ibiblio01.cfg b/roles/nagios/server/files/nagios/hosts/ibiblio01.cfg deleted file mode 100644 index 5bc5f5333a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ibiblio01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name ibiblio01 -# alias ibiblio01.fedoraproject.org -# use defaulttemplate -# address ibiblio04.fedoraproject.org -# parents ibiblio-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/ibiblio02.cfg b/roles/nagios/server/files/nagios/hosts/ibiblio02.cfg deleted file mode 100644 index aec50857e3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ibiblio02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ibiblio02 - alias ibiblio02.fedoraproject.org - use defaulttemplate - address ibiblio02.fedoraproject.org - parents ibiblio-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/ibiblio03.cfg b/roles/nagios/server/files/nagios/hosts/ibiblio03.cfg deleted file mode 100644 index 962623db15..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ibiblio03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ibiblio03 - alias ibiblio03.fedoraproject.org - use defaulttemplate - address ibiblio03.fedoraproject.org - parents ibiblio-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/ibiblio04.cfg b/roles/nagios/server/files/nagios/hosts/ibiblio04.cfg deleted file mode 100644 index 7afdb25012..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ibiblio04.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name ibiblio04 - alias ibiblio04.fedoraproject.org - use defaulttemplate - address ibiblio04.fedoraproject.org - parents ibiblio-gw -} - diff --git a/roles/nagios/server/files/nagios/hosts/ibiblio05.cfg b/roles/nagios/server/files/nagios/hosts/ibiblio05.cfg deleted file mode 100644 index bdfd48f2f9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ibiblio05.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ibiblio05 - alias ibiblio05.fedoraproject.org - use defaulttemplate - address ibiblio05.fedoraproject.org - parents ibiblio-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/internetx01.cfg b/roles/nagios/server/files/nagios/hosts/internetx01.cfg deleted file mode 100644 index 53bb303acc..0000000000 --- a/roles/nagios/server/files/nagios/hosts/internetx01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name internetx01 - alias internetx01.fedoraproject.org - use defaulttemplate - address internetx01.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/ipa01.cfg b/roles/nagios/server/files/nagios/hosts/ipa01.cfg deleted file mode 100644 index 71ac57f424..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ipa01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ipa01 - alias ipa01.phx2.fedoraproject.org - use defaulttemplate - address ipa01.phx2.fedoraproject.org - parents virthost15 -} diff --git a/roles/nagios/server/files/nagios/hosts/ipa02.cfg b/roles/nagios/server/files/nagios/hosts/ipa02.cfg deleted file mode 100644 index 2fb90dfcc2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ipa02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ipa02 - alias ipa02.phx2.fedoraproject.org - use defaulttemplate - address ipa02.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/ipsilon01.cfg b/roles/nagios/server/files/nagios/hosts/ipsilon01.cfg deleted file mode 100644 index 5ebf4832a9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ipsilon01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ipsilon01 - alias ipsilon01.phx2.fedoraproject.org - use defaulttemplate - address ipsilon01.phx2.fedoraproject.org - parents virthost15 -} diff --git a/roles/nagios/server/files/nagios/hosts/ipsilon02.cfg b/roles/nagios/server/files/nagios/hosts/ipsilon02.cfg deleted file mode 100644 index d0b8c01ea6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ipsilon02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ipsilon02 - alias ipsilon02.phx2.fedoraproject.org - use defaulttemplate - address ipsilon02.phx2.fedoraproject.org - parents virthost17 -} diff --git a/roles/nagios/server/files/nagios/hosts/koji01-stg.cfg b/roles/nagios/server/files/nagios/hosts/koji01-stg.cfg deleted file mode 100644 index 6a526e12f1..0000000000 --- a/roles/nagios/server/files/nagios/hosts/koji01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name koji01.stg - alias koji01.stg.phx2.fedoraproject.org - use defaulttemplate - address koji01.stg.phx2.fedoraproject.org - parents virthost20 -} diff --git a/roles/nagios/server/files/nagios/hosts/koji01.cfg b/roles/nagios/server/files/nagios/hosts/koji01.cfg deleted file mode 100644 index 07cb20a75b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/koji01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name koji01 - alias koji01.phx2.fedoraproject.org - use defaulttemplate - address koji01.phx2.fedoraproject.org - parents bvirthost08 -} diff --git a/roles/nagios/server/files/nagios/hosts/koji02.cfg b/roles/nagios/server/files/nagios/hosts/koji02.cfg deleted file mode 100644 index c767513320..0000000000 --- a/roles/nagios/server/files/nagios/hosts/koji02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name koji02 - alias koji02.phx2.fedoraproject.org - use defaulttemplate - address koji02.phx2.fedoraproject.org - parents bvirthost10 -} diff --git a/roles/nagios/server/files/nagios/hosts/kojipkgs01.cfg b/roles/nagios/server/files/nagios/hosts/kojipkgs01.cfg deleted file mode 100644 index b28882b1bd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/kojipkgs01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name kojipkgs01 - alias kojipkgs01.phx2.fedoraproject.org - use defaulttemplate - address kojipkgs01.phx2.fedoraproject.org - parents bvirthost11 -} diff --git a/roles/nagios/server/files/nagios/hosts/kojipkgs02.cfg b/roles/nagios/server/files/nagios/hosts/kojipkgs02.cfg deleted file mode 100644 index e6034b403d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/kojipkgs02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name kojipkgs02 -## alias kojipkgs02.phx2.fedoraproject.org -# use defaulttemplate -# address kojipkgs02.phx2.fedoraproject.org -# parents bvirthost04 -#} diff --git a/roles/nagios/server/files/nagios/hosts/koschei-backend01.cfg b/roles/nagios/server/files/nagios/hosts/koschei-backend01.cfg deleted file mode 100644 index 53fbe99d26..0000000000 --- a/roles/nagios/server/files/nagios/hosts/koschei-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name koschei-backend01 - alias koschei-backend01.phx2.fedoraproject.org - use defaulttemplate - address koschei-backend01.phx2.fedoraproject.org - parents bvirthost09 -} diff --git a/roles/nagios/server/files/nagios/hosts/koschei-web01.cfg b/roles/nagios/server/files/nagios/hosts/koschei-web01.cfg deleted file mode 100644 index c6df637200..0000000000 --- a/roles/nagios/server/files/nagios/hosts/koschei-web01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name koschei-web01 - alias koschei-web01.phx2.fedoraproject.org - use defaulttemplate - address koschei-web01.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/lockbox01.cfg b/roles/nagios/server/files/nagios/hosts/lockbox01.cfg deleted file mode 100644 index 6bbfdf6266..0000000000 --- a/roles/nagios/server/files/nagios/hosts/lockbox01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name lockbox01 -# alias lockbox01.phx2.fedoraproject.org -# use defaulttemplate -# address lockbox01.phx2.fedoraproject.org -# parents virthost15 -#} diff --git a/roles/nagios/server/files/nagios/hosts/log01.cfg b/roles/nagios/server/files/nagios/hosts/log01.cfg deleted file mode 100644 index e466ee8143..0000000000 --- a/roles/nagios/server/files/nagios/hosts/log01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name log01 - alias log01.phx2.fedoraproject.org - use defaulttemplate - address log01.phx2.fedoraproject.org - parents virthost18 -} diff --git a/roles/nagios/server/files/nagios/hosts/magazine.cfg b/roles/nagios/server/files/nagios/hosts/magazine.cfg deleted file mode 100644 index 52c21e3a3d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/magazine.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name magazine - alias magazine.fedorainfracloud.org - use defaulttemplate - address magazine.fedorainfracloud.org -} diff --git a/roles/nagios/server/files/nagios/hosts/mailman01.cfg b/roles/nagios/server/files/nagios/hosts/mailman01.cfg deleted file mode 100644 index f3614c1bc8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mailman01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mailman01 - alias mailman01.phx2.fedoraproject.org - use defaulttemplate - address mailman01.phx2.fedoraproject.org - parents virthost17 -} diff --git a/roles/nagios/server/files/nagios/hosts/mbs-backend01.cfg b/roles/nagios/server/files/nagios/hosts/mbs-backend01.cfg deleted file mode 100644 index 6b744e6907..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mbs-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mbs-backend01 - alias mbs-backend01.phx2.fedoraproject.org - use defaulttemplate - address mbs-backend01.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/mbs-frontend01.cfg b/roles/nagios/server/files/nagios/hosts/mbs-frontend01.cfg deleted file mode 100644 index ac17627157..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mbs-frontend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mbs-frontend01 - alias mbs-frontend01.phx2.fedoraproject.org - use defaulttemplate - address mbs-frontend01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/mbs-frontend02.cfg b/roles/nagios/server/files/nagios/hosts/mbs-frontend02.cfg deleted file mode 100644 index b6e2ccef40..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mbs-frontend02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mbs-frontend02 - alias mbs-frontend02.phx2.fedoraproject.org - use defaulttemplate - address mbs-frontend02.phx2.fedoraproject.org - parents virthost21 -} diff --git a/roles/nagios/server/files/nagios/hosts/memcached01.cfg b/roles/nagios/server/files/nagios/hosts/memcached01.cfg deleted file mode 100644 index 92691513ad..0000000000 --- a/roles/nagios/server/files/nagios/hosts/memcached01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name memcached01 - alias memcached01.phx2.fedoraproject.org - use defaulttemplate - address memcached01.phx2.fedoraproject.org - parents virthost17 -} diff --git a/roles/nagios/server/files/nagios/hosts/memcached02.cfg b/roles/nagios/server/files/nagios/hosts/memcached02.cfg deleted file mode 100644 index 2971598cb4..0000000000 --- a/roles/nagios/server/files/nagios/hosts/memcached02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name memcached02 - alias memcached02.phx2.fedoraproject.org - use defaulttemplate - address memcached02.phx2.fedoraproject.org - parents virthost18 -} diff --git a/roles/nagios/server/files/nagios/hosts/mirrorlist-dedicatedsolutions.cfg b/roles/nagios/server/files/nagios/hosts/mirrorlist-dedicatedsolutions.cfg deleted file mode 100644 index bd3e649125..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mirrorlist-dedicatedsolutions.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mirrorlist-dedicatedsolutions - alias mirrorlist-dedicatedsolutions.fedoraproject.org - use defaulttemplate - address mirrorlist-dedicatedsolutions.fedoraproject.org - parents dedicatedsolutions01 -} diff --git a/roles/nagios/server/files/nagios/hosts/mirrorlist-host1plus.cfg b/roles/nagios/server/files/nagios/hosts/mirrorlist-host1plus.cfg deleted file mode 100644 index bdca7bfbb0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mirrorlist-host1plus.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name mirrorlist-host1plus - alias mirrorlist-host1plus.fedoraproject.org - use defaulttemplate - address mirrorlist-host1plus.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hosts/mirrorlist-ibiblio.cfg b/roles/nagios/server/files/nagios/hosts/mirrorlist-ibiblio.cfg deleted file mode 100644 index 9dcc2049a0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mirrorlist-ibiblio.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name mirrorlist-ibiblio -# alias mirrorlist-ibiblio.fedoraproject.org -# use defaulttemplate -# address mirrorlist-ibiblio.fedoraproject.org -# parents ibiblio04 -#} diff --git a/roles/nagios/server/files/nagios/hosts/mirrorlist-ibiblio02.cfg b/roles/nagios/server/files/nagios/hosts/mirrorlist-ibiblio02.cfg deleted file mode 100644 index 5ff77ef9db..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mirrorlist-ibiblio02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mirrorlist-ibiblio02 - alias mirrorlist-ibiblio02.fedoraproject.org - use defaulttemplate - address mirrorlist-ibiblio02.fedoraproject.org - parents ibiblio05 -} diff --git a/roles/nagios/server/files/nagios/hosts/mirrorlist-osuosl.cfg b/roles/nagios/server/files/nagios/hosts/mirrorlist-osuosl.cfg deleted file mode 100644 index 44f48d24a6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mirrorlist-osuosl.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mirrorlist-osuosl - alias mirrorlist-osuosl.fedoraproject.org - use defaulttemplate - address mirrorlist-osuosl.fedoraproject.org - parents osuosl01 -} diff --git a/roles/nagios/server/files/nagios/hosts/mirrorlist-phx2.cfg b/roles/nagios/server/files/nagios/hosts/mirrorlist-phx2.cfg deleted file mode 100644 index 4912a2e065..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mirrorlist-phx2.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mirrorlist-phx2 - alias mirrorlist-phx2.phx2.fedoraproject.org - use defaulttemplate - address mirrorlist-phx2.phx2.fedoraproject.org - parents virthost14 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-backend01-stg.cfg b/roles/nagios/server/files/nagios/hosts/mm-backend01-stg.cfg deleted file mode 100644 index 534d4f2b3d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-backend01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-backend01.stg - alias mm-backend01.stg.phx2.fedoraproject.org - use defaulttemplate - address mm-backend01.stg.phx2.fedoraproject.org - parents virthost16 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-backend01.cfg b/roles/nagios/server/files/nagios/hosts/mm-backend01.cfg deleted file mode 100644 index 502578f622..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-backend01 - alias mm-backend01.phx2.fedoraproject.org - use defaulttemplate - address mm-backend01.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-crawler01-stg.cfg b/roles/nagios/server/files/nagios/hosts/mm-crawler01-stg.cfg deleted file mode 100644 index 9c24b31bbf..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-crawler01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-crawler01.stg - alias mm-crawler01.stg.phx2.fedoraproject.org - use defaulttemplate - address mm-crawler01.stg.phx2.fedoraproject.org - parents virthost11 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-crawler01.cfg b/roles/nagios/server/files/nagios/hosts/mm-crawler01.cfg deleted file mode 100644 index bf30015b8f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-crawler01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-crawler01 - alias mm-crawler01.phx2.fedoraproject.org - use defaulttemplate - address mm-crawler01.phx2.fedoraproject.org - parents virthost02 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-crawler02.cfg b/roles/nagios/server/files/nagios/hosts/mm-crawler02.cfg deleted file mode 100644 index fe70fa4e24..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-crawler02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-crawler02 - alias mm-crawler02.phx2.fedoraproject.org - use defaulttemplate - address mm-crawler02.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-frontend01-stg.cfg b/roles/nagios/server/files/nagios/hosts/mm-frontend01-stg.cfg deleted file mode 100644 index c87a3f9bd3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-frontend01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-frontend01.stg - alias mm-frontend01.stg.phx2.fedoraproject.org - use defaulttemplate - address mm-frontend01.stg.phx2.fedoraproject.org - parents virthost16 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-frontend01.cfg b/roles/nagios/server/files/nagios/hosts/mm-frontend01.cfg deleted file mode 100644 index dbc156df3f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-frontend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-frontend01 - alias mm-frontend01.phx2.fedoraproject.org - use defaulttemplate - address mm-frontend01.phx2.fedoraproject.org - parents virthost02 -} diff --git a/roles/nagios/server/files/nagios/hosts/mm-frontend02.cfg b/roles/nagios/server/files/nagios/hosts/mm-frontend02.cfg deleted file mode 100644 index aa2013bc0e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/mm-frontend02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name mm-frontend02 - alias mm-frontend02.phx2.fedoraproject.org - use defaulttemplate - address mm-frontend02.phx2.fedoraproject.org - parents virthost02 -} diff --git a/roles/nagios/server/files/nagios/hosts/modernpaste01.cfg b/roles/nagios/server/files/nagios/hosts/modernpaste01.cfg deleted file mode 100644 index b3eb7147c7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/modernpaste01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name modernpaste01 - alias modernpaste01.phx2.fedoraproject.org - use defaulttemplate - address modernpaste01.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/noc01.cfg b/roles/nagios/server/files/nagios/hosts/noc01.cfg deleted file mode 100644 index 188b792049..0000000000 --- a/roles/nagios/server/files/nagios/hosts/noc01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name noc01 - alias noc01.phx2.fedoraproject.org - use defaulttemplate - address 127.0.0.1 - parents virthost17 -} diff --git a/roles/nagios/server/files/nagios/hosts/noc02.cfg b/roles/nagios/server/files/nagios/hosts/noc02.cfg deleted file mode 100644 index f827b2513c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/noc02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name noc02 - alias noc02.fedoraproject.org - use defaulttemplate - address noc02.fedoraproject.org - parents ibiblio04 -} diff --git a/roles/nagios/server/files/nagios/hosts/notifs-backend01.cfg b/roles/nagios/server/files/nagios/hosts/notifs-backend01.cfg deleted file mode 100644 index e4339e4cf2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/notifs-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name notifs-backend01 - alias notifs-backend01.phx2.fedoraproject.org - use defaulttemplate - address notifs-backend01.phx2.fedoraproject.org - parents virthost21 -} diff --git a/roles/nagios/server/files/nagios/hosts/notifs-web01.cfg b/roles/nagios/server/files/nagios/hosts/notifs-web01.cfg deleted file mode 100644 index 93821054a8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/notifs-web01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name notifs-web01 - alias notifs-web01.phx2.fedoraproject.org - use defaulttemplate - address notifs-web01.phx2.fedoraproject.org - parents virthost02 -} diff --git a/roles/nagios/server/files/nagios/hosts/notifs-web02.cfg b/roles/nagios/server/files/nagios/hosts/notifs-web02.cfg deleted file mode 100644 index 862718b011..0000000000 --- a/roles/nagios/server/files/nagios/hosts/notifs-web02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name notifs-web02 - alias notifs-web02.phx2.fedoraproject.org - use defaulttemplate - address notifs-web02.phx2.fedoraproject.org - parents virthost19 -} diff --git a/roles/nagios/server/files/nagios/hosts/ns-sb01.cfg b/roles/nagios/server/files/nagios/hosts/ns-sb01.cfg deleted file mode 100644 index 46a931c038..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ns-sb01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name ns-sb01 -# alias ns-sb01.fedoraproject.org -# use defaulttemplate -# address 69.174.247.243 -# parents serverbeach09 -# } diff --git a/roles/nagios/server/files/nagios/hosts/ns02.cfg b/roles/nagios/server/files/nagios/hosts/ns02.cfg deleted file mode 100644 index 507cc1bd61..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ns02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ns02 - alias ns02.fedoraproject.org - use defaulttemplate - address ns02.fedoraproject.org - parents ibiblio05 -} diff --git a/roles/nagios/server/files/nagios/hosts/ns03.cfg b/roles/nagios/server/files/nagios/hosts/ns03.cfg deleted file mode 100644 index ac9b6c4e32..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ns03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ns03 - alias ns03.phx2.fedoraproject.org - use defaulttemplate - address ns03.phx2.fedoraproject.org - parents virthost21 -} diff --git a/roles/nagios/server/files/nagios/hosts/ns04.cfg b/roles/nagios/server/files/nagios/hosts/ns04.cfg deleted file mode 100644 index 5eceab03f4..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ns04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ns04 - alias ns04.phx2.fedoraproject.org - use defaulttemplate - address ns04.phx2.fedoraproject.org - parents virthost15 -} diff --git a/roles/nagios/server/files/nagios/hosts/ns05.cfg b/roles/nagios/server/files/nagios/hosts/ns05.cfg deleted file mode 100644 index 5b554b47ed..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ns05.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name ns05 - alias ns05.fedoraproject.org - use defaulttemplate - address ns05.fedoraproject.org - parents internetx01 -} diff --git a/roles/nagios/server/files/nagios/hosts/nuancier01.cfg b/roles/nagios/server/files/nagios/hosts/nuancier01.cfg deleted file mode 100644 index 2f526b6121..0000000000 --- a/roles/nagios/server/files/nagios/hosts/nuancier01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name nuancier01 - alias nuancier01.phx2.fedoraproject.org - use defaulttemplate - address nuancier01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/nuancier02.cfg b/roles/nagios/server/files/nagios/hosts/nuancier02.cfg deleted file mode 100644 index c955cf72d8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/nuancier02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name nuancier02 - alias nuancier02.phx2.fedoraproject.org - use defaulttemplate - address nuancier02.phx2.fedoraproject.org - parents virthost21 -} diff --git a/roles/nagios/server/files/nagios/hosts/osbs-master01.cfg b/roles/nagios/server/files/nagios/hosts/osbs-master01.cfg deleted file mode 100644 index 41847a354c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/osbs-master01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name osbs-master01 - alias osbs-master01.phx2.fedoraproject.org - use defaulttemplate - address osbs-master01.phx2.fedoraproject.org - parents bvirthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/osuosl01.cfg b/roles/nagios/server/files/nagios/hosts/osuosl01.cfg deleted file mode 100644 index 801418d1df..0000000000 --- a/roles/nagios/server/files/nagios/hosts/osuosl01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name osuosl01 - alias osuosl01.fedoraproject.org - use defaulttemplate - address osuosl01.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/osuosl02.cfg b/roles/nagios/server/files/nagios/hosts/osuosl02.cfg deleted file mode 100644 index 1b9cb265b7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/osuosl02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name osuosl02 - alias osuosl02.fedoraproject.org - use defaulttemplate - address osuosl02.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/osuosl03.cfg b/roles/nagios/server/files/nagios/hosts/osuosl03.cfg deleted file mode 100644 index 44da935ea0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/osuosl03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name osuosl03 - alias osuosl03.fedoraproject.org - use defaulttemplate - address osuosl03.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/packages03.cfg b/roles/nagios/server/files/nagios/hosts/packages03.cfg deleted file mode 100644 index 9f40cf1f93..0000000000 --- a/roles/nagios/server/files/nagios/hosts/packages03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name packages03 - alias packages03.phx2.fedoraproject.org - use defaulttemplate - address packages03.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/packages04.cfg b/roles/nagios/server/files/nagios/hosts/packages04.cfg deleted file mode 100644 index 7147d53345..0000000000 --- a/roles/nagios/server/files/nagios/hosts/packages04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name packages04 - alias packages04.phx2.fedoraproject.org - use defaulttemplate - address packages04.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/paste01.cfg b/roles/nagios/server/files/nagios/hosts/paste01.cfg deleted file mode 100644 index 1a0cc2ce33..0000000000 --- a/roles/nagios/server/files/nagios/hosts/paste01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name paste01 -# alias paste01.phx2.fedoraproject.org -# use defaulttemplate -# address paste01.phx2.fedoraproject.org -# parents virthost15 -#} diff --git a/roles/nagios/server/files/nagios/hosts/paste02.cfg b/roles/nagios/server/files/nagios/hosts/paste02.cfg deleted file mode 100644 index 277a4e968c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/paste02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name paste02 -# alias paste02.phx2.fedoraproject.org -# use defaulttemplate -# address paste02.phx2.fedoraproject.org -# parents virthost18 -#} diff --git a/roles/nagios/server/files/nagios/hosts/pdc-backend01.cfg b/roles/nagios/server/files/nagios/hosts/pdc-backend01.cfg deleted file mode 100644 index 04fa50bb03..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pdc-backend01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pdc-backend01 - alias pdc-backend01.phx2.fedoraproject.org - use defaulttemplate - address pdc-backend01.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/pdc-web01.cfg b/roles/nagios/server/files/nagios/hosts/pdc-web01.cfg deleted file mode 100644 index 20268f3008..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pdc-web01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pdc-web01 - alias pdc-web01.phx2.fedoraproject.org - use defaulttemplate - address pdc-web01.phx2.fedoraproject.org - parents virthost22 -} diff --git a/roles/nagios/server/files/nagios/hosts/pdc-web02.cfg b/roles/nagios/server/files/nagios/hosts/pdc-web02.cfg deleted file mode 100644 index 21d086f009..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pdc-web02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pdc-web02 - alias pdc-web02.phx2.fedoraproject.org - use defaulttemplate - address pdc-web02.phx2.fedoraproject.org - parents virthost21 -} diff --git a/roles/nagios/server/files/nagios/hosts/people01.cfg b/roles/nagios/server/files/nagios/hosts/people01.cfg deleted file mode 100644 index 2e02ce82cd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/people01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name people01 -# alias people01.fedoraproject.org -# use defaulttemplate -# address people01.fedoraproject.org -# parents ibiblio05 -#} diff --git a/roles/nagios/server/files/nagios/hosts/people02.cfg b/roles/nagios/server/files/nagios/hosts/people02.cfg deleted file mode 100644 index 22211bab33..0000000000 --- a/roles/nagios/server/files/nagios/hosts/people02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name people02 - alias people02.fedoraproject.org - use defaulttemplate - address people02.fedoraproject.org - parents ibiblio05 -} diff --git a/roles/nagios/server/files/nagios/hosts/people03.cfg b/roles/nagios/server/files/nagios/hosts/people03.cfg deleted file mode 100644 index 2131b8ef4f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/people03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name people03 -# alias people03.fedoraproject.org -# use defaulttemplate -# address people03.fedoraproject.org -# parents ibiblio05 -#} diff --git a/roles/nagios/server/files/nagios/hosts/pkgdb01.cfg b/roles/nagios/server/files/nagios/hosts/pkgdb01.cfg deleted file mode 100644 index d8bf8bb265..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pkgdb01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pkgdb01 - alias pkgdb01.phx2.fedoraproject.org - use defaulttemplate - address pkgdb01.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/pkgdb01.stg.cfg b/roles/nagios/server/files/nagios/hosts/pkgdb01.stg.cfg deleted file mode 100644 index 2e9b93093f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pkgdb01.stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pkgdb01.stg - alias pkgdb01.stg.phx2.fedoraproject.org - use defaulttemplate - address pkgdb01.stg.phx2.fedoraproject.org - parents virthost12 -} diff --git a/roles/nagios/server/files/nagios/hosts/pkgdb02.cfg b/roles/nagios/server/files/nagios/hosts/pkgdb02.cfg deleted file mode 100644 index 25550c06e7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pkgdb02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pkgdb02 - alias pkgdb02.phx2.fedoraproject.org - use defaulttemplate - address pkgdb02.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/pkgs01-stg.cfg b/roles/nagios/server/files/nagios/hosts/pkgs01-stg.cfg deleted file mode 100644 index 348d6b3a10..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pkgs01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pkgs01.stg - alias pkgs01.stg.phx2.fedoraproject.org - use defaulttemplate - address pkgs01.stg.phx2.fedoraproject.org - parents virthost16 -} diff --git a/roles/nagios/server/files/nagios/hosts/pkgs02.cfg b/roles/nagios/server/files/nagios/hosts/pkgs02.cfg deleted file mode 100644 index 8e90b2e866..0000000000 --- a/roles/nagios/server/files/nagios/hosts/pkgs02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name pkgs02 - alias pkgs02.phx2.fedoraproject.org - use defaulttemplate - address pkgs02.phx2.fedoraproject.org - parents bvirthost11 -} diff --git a/roles/nagios/server/files/nagios/hosts/ppc-hub.cfg b/roles/nagios/server/files/nagios/hosts/ppc-hub.cfg deleted file mode 100644 index 90c0ed9b04..0000000000 --- a/roles/nagios/server/files/nagios/hosts/ppc-hub.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name ppc-hub - alias ppc-koji01.ppc.fedoraproject.org - use ppc-secondarytemplate - address ppc-koji01.ppc.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy01-stg.cfg b/roles/nagios/server/files/nagios/hosts/proxy01-stg.cfg deleted file mode 100644 index fdfe3e470d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy01.stg - alias proxy01.stg.phx2.fedoraproject.org - use defaulttemplate - address proxy01.stg.phx2.fedoraproject.org - parents virthost12 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy01.cfg b/roles/nagios/server/files/nagios/hosts/proxy01.cfg deleted file mode 100644 index 4d6eaac292..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy01 - alias proxy01.phx2.fedoraproject.org - use defaulttemplate - address proxy01.phx2.fedoraproject.org - parents virthost21 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy02.cfg b/roles/nagios/server/files/nagios/hosts/proxy02.cfg deleted file mode 100644 index 8dae37f5ea..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy02 - alias proxy02.fedoraproject.org - use defaulttemplate - address proxy02.fedoraproject.org - parents internetx01 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy03.cfg b/roles/nagios/server/files/nagios/hosts/proxy03.cfg deleted file mode 100644 index c0ee56f756..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy03 - alias proxy03.fedoraproject.org - use defaulttemplate - address proxy03.fedoraproject.org - parents tummy01 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy04.cfg b/roles/nagios/server/files/nagios/hosts/proxy04.cfg deleted file mode 100644 index 32f42accff..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy04 - alias proxy04.fedoraproject.org - use defaulttemplate - address proxy04.fedoraproject.org - parents ibiblio02 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy05.cfg b/roles/nagios/server/files/nagios/hosts/proxy05.cfg deleted file mode 100644 index 50ed3d19d6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy05.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name proxy05 - alias proxy05.fedoraproject.org - use defaulttemplate - address proxy05.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy06.cfg b/roles/nagios/server/files/nagios/hosts/proxy06.cfg deleted file mode 100644 index 580f4f48da..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy06.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy06 - alias proxy06.fedoraproject.org - use defaulttemplate - address proxy06.fedoraproject.org - parents osuosl01 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy07.cfg b/roles/nagios/server/files/nagios/hosts/proxy07.cfg deleted file mode 100644 index bacdf20ef8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy07.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name proxy07 -# alias proxy07.fedoraproject.org -# use defaulttemplate -# address proxy07.fedoraproject.org -# parents bodhost01 -#} diff --git a/roles/nagios/server/files/nagios/hosts/proxy08.cfg b/roles/nagios/server/files/nagios/hosts/proxy08.cfg deleted file mode 100644 index adc93745d4..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy08.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy08 - alias proxy08.fedoraproject.org - use defaulttemplate - address proxy08.fedoraproject.org - parents coloamer01 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy09.cfg b/roles/nagios/server/files/nagios/hosts/proxy09.cfg deleted file mode 100644 index 820f9c4f6e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy09.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy09 - alias proxy09.fedoraproject.org - use defaulttemplate - address proxy09.fedoraproject.org - parents osuosl02 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy10.cfg b/roles/nagios/server/files/nagios/hosts/proxy10.cfg deleted file mode 100644 index 99555ecc57..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy10.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy10 - alias proxy10.phx2.fedoraproject.org - use defaulttemplate - address proxy10.phx2.fedoraproject.org - parents virthost17 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy11.cfg b/roles/nagios/server/files/nagios/hosts/proxy11.cfg deleted file mode 100644 index 9d1b306cb1..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy11.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy11 - alias proxy11.fedoraproject.org - use defaulttemplate - address proxy11.fedoraproject.org - parents dedicatedsolutions01 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy12.cfg b/roles/nagios/server/files/nagios/hosts/proxy12.cfg deleted file mode 100644 index b9a6bef6c2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy12.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy12 - alias proxy12.fedoraproject.org - use defaulttemplate - address proxy12.fedoraproject.org - parents ibiblio05 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy13.cfg b/roles/nagios/server/files/nagios/hosts/proxy13.cfg deleted file mode 100644 index d5fcf005d6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy13.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy13 - alias proxy13.vpn.fedoraproject.org - use defaulttemplate - address proxy13.vpn.fedoraproject.org - parents virthost-rdu01 -} diff --git a/roles/nagios/server/files/nagios/hosts/proxy14.cfg b/roles/nagios/server/files/nagios/hosts/proxy14.cfg deleted file mode 100644 index 2606838e66..0000000000 --- a/roles/nagios/server/files/nagios/hosts/proxy14.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name proxy14 - alias proxy14.fedoraproject.org - use defaulttemplate - address proxy14.fedoraproject.org - parents virthost-cc-rdu01 -} diff --git a/roles/nagios/server/files/nagios/hosts/qa01-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa01-mgmt.cfg deleted file mode 100644 index 360e4dfe88..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa01-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa01.mgmt.fedoraproject.org - alias qa01.mgmt.fedoraproject.org - use mincheck - address qa01.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa02-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa02-mgmt.cfg deleted file mode 100644 index 5b9e18c84a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa02-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa02.mgmt.fedoraproject.org - alias qa02.mgmt.fedoraproject.org - use mincheck - address qa02.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa03-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa03-mgmt.cfg deleted file mode 100644 index 26019db0c6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa03-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa03.mgmt.fedoraproject.org - alias qa03.mgmt.fedoraproject.org - use mincheck - address qa03.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa04-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa04-mgmt.cfg deleted file mode 100644 index 58e46e4bff..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa04-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa04.mgmt.fedoraproject.org - alias qa04.mgmt.fedoraproject.org - use mincheck - address qa04.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa05-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa05-mgmt.cfg deleted file mode 100644 index c0bc35e13e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa05-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa05.mgmt.fedoraproject.org - alias qa05.mgmt.fedoraproject.org - use mincheck - address qa05.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa06-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa06-mgmt.cfg deleted file mode 100644 index fcd80f9402..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa06-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name qa06.mgmt.fedoraproject.org -# alias qa06.mgmt.fedoraproject.org -# use mincheck -# address qa06.mgmt.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/qa07-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa07-mgmt.cfg deleted file mode 100644 index 59a199b50f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa07-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa07.mgmt.fedoraproject.org - alias qa07.mgmt.fedoraproject.org - use mincheck - address qa07.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa08-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa08-mgmt.cfg deleted file mode 100644 index 5032476156..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa08-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa08.mgmt.fedoraproject.org - alias qa08.mgmt.fedoraproject.org - use mincheck - address qa08.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa09-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa09-mgmt.cfg deleted file mode 100644 index 9ec2fdae72..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa09-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa09.mgmt.fedoraproject.org - alias qa09.mgmt.fedoraproject.org - use mincheck - address qa09.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa09.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/qa09.qa.fedoraproject.org.cfg deleted file mode 100644 index 34d68bce0d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa09.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa09.qa - alias qa09.qa.fedoraproject.org - use defaulttemplate - address qa09.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa10-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa10-mgmt.cfg deleted file mode 100644 index baf634b14a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa10-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa10.mgmt.fedoraproject.org - alias qa10.mgmt.fedoraproject.org - use mincheck - address qa10.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa10.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/qa10.qa.fedoraproject.org.cfg deleted file mode 100644 index 469aa4271c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa10.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa10.qa - alias qa10.qa.fedoraproject.org - use defaulttemplate - address qa10.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa11-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa11-mgmt.cfg deleted file mode 100644 index 081ba28980..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa11-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa11.mgmt.fedoraproject.org - alias qa11.mgmt.fedoraproject.org - use mincheck - address qa11.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa11.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/qa11.qa.fedoraproject.org.cfg deleted file mode 100644 index 5bf08341dd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa11.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa11.qa - alias qa11.qa.fedoraproject.org - use defaulttemplate - address qa11.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa12-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa12-mgmt.cfg deleted file mode 100644 index e9430f8c9f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa12-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa12.mgmt.fedoraproject.org - alias qa12.mgmt.fedoraproject.org - use mincheck - address qa12.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa12.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/qa12.qa.fedoraproject.org.cfg deleted file mode 100644 index 60c396990e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa12.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa12.qa - alias qa12.qa.fedoraproject.org - use defaulttemplate - address qa12.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa13-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa13-mgmt.cfg deleted file mode 100644 index a6273eb978..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa13-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa13.mgmt.fedoraproject.org - alias qa13.mgmt.fedoraproject.org - use mincheck - address qa13.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa13.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/qa13.qa.fedoraproject.org.cfg deleted file mode 100644 index 85d4e4e645..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa13.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa13.qa - alias qa13.qa.fedoraproject.org - use defaulttemplate - address qa13.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa14-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/qa14-mgmt.cfg deleted file mode 100644 index 89a57e4809..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa14-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa14.mgmt.fedoraproject.org - alias qa14.mgmt.fedoraproject.org - use mincheck - address qa14.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/qa14.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/qa14.qa.fedoraproject.org.cfg deleted file mode 100644 index 1cd25abd0e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/qa14.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name qa14.qa - alias qa14.qa.fedoraproject.org - use defaulttemplate - address qa14.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/rawhide-composer.cfg b/roles/nagios/server/files/nagios/hosts/rawhide-composer.cfg deleted file mode 100644 index 16be0196e5..0000000000 --- a/roles/nagios/server/files/nagios/hosts/rawhide-composer.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name rawhide-composer - alias rawhide-composer.phx2.fedoraproject.org - use defaulttemplate - address rawhide-composer.phx2.fedoraproject.org - parents bvirthost06 -} diff --git a/roles/nagios/server/files/nagios/hosts/releng01-stg.cfg b/roles/nagios/server/files/nagios/hosts/releng01-stg.cfg deleted file mode 100644 index 13e24ee5c7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/releng01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name releng01.stg -# alias releng01.stg.phx2.fedoraproject.org -# use defaulttemplate -# address releng01.stg.phx2.fedoraproject.org -# parents virthost12 -#} diff --git a/roles/nagios/server/files/nagios/hosts/releng04.cfg b/roles/nagios/server/files/nagios/hosts/releng04.cfg deleted file mode 100644 index cb9e35e498..0000000000 --- a/roles/nagios/server/files/nagios/hosts/releng04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name releng04 -# alias releng04.phx2.fedoraproject.org -# use defaulttemplate -# address releng04.phx2.fedoraproject.org -# parents bvirthost07 -#} diff --git a/roles/nagios/server/files/nagios/hosts/relepel01.cfg b/roles/nagios/server/files/nagios/hosts/relepel01.cfg deleted file mode 100644 index 9f5c1a0fb7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/relepel01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name relepel01 -# alias relepel01.phx2.fedoraproject.org -# use defaulttemplate -# address relepel01.phx2.fedoraproject.org -# parents bvirthost07 -#} diff --git a/roles/nagios/server/files/nagios/hosts/resultsdb01.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/resultsdb01.qa.fedoraproject.org.cfg deleted file mode 100644 index b19e54ef32..0000000000 --- a/roles/nagios/server/files/nagios/hosts/resultsdb01.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name resultsdb01.qa - alias resultsdb01.qa.fedoraproject.org - use defaulttemplate - address resultsdb01.qa.fedoraproject.org - parents virthost-comm03 -} diff --git a/roles/nagios/server/files/nagios/hosts/retrace01.cfg b/roles/nagios/server/files/nagios/hosts/retrace01.cfg deleted file mode 100644 index 054bf1c73e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/retrace01.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define host { - host_name retrace01.qa - alias retrace01.qa.fedoraproject.org - use retracetemplate - address retrace01.qa.fedoraproject.org -} diff --git a/roles/nagios/server/files/nagios/hosts/secondary01.cfg b/roles/nagios/server/files/nagios/hosts/secondary01.cfg deleted file mode 100644 index 8542a1c5fd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/secondary01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name secondary01 - alias secondary01.phx2.fedoraproject.org - use defaulttemplate - address secondary01.phx2.fedoraproject.org - parents virthost15 -} diff --git a/roles/nagios/server/files/nagios/hosts/serverbeach06.cfg b/roles/nagios/server/files/nagios/hosts/serverbeach06.cfg deleted file mode 100644 index ef178c7470..0000000000 --- a/roles/nagios/server/files/nagios/hosts/serverbeach06.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name serverbeach06 -# alias serverbeach06.fedoraproject.org -# use defaulttemplate -# address serverbeach06.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/serverbeach07.cfg b/roles/nagios/server/files/nagios/hosts/serverbeach07.cfg deleted file mode 100644 index 83dbd46f93..0000000000 --- a/roles/nagios/server/files/nagios/hosts/serverbeach07.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name serverbeach07 -# alias serverbeach07.fedoraproject.org -# use defaulttemplate -# address serverbeach07.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/serverbeach08.cfg b/roles/nagios/server/files/nagios/hosts/serverbeach08.cfg deleted file mode 100644 index 1dccc66c19..0000000000 --- a/roles/nagios/server/files/nagios/hosts/serverbeach08.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name serverbeach08 -# alias serverbeach08.fedoraproject.org -# use defaulttemplate -# address serverbeach08.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/serverbeach09.cfg b/roles/nagios/server/files/nagios/hosts/serverbeach09.cfg deleted file mode 100644 index 2f8078eb09..0000000000 --- a/roles/nagios/server/files/nagios/hosts/serverbeach09.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name serverbeach09 -# alias serverbeach09.fedoraproject.org -# use defaulttemplate -# address serverbeach09.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/serverbeach10.cfg b/roles/nagios/server/files/nagios/hosts/serverbeach10.cfg deleted file mode 100644 index b7555fbe29..0000000000 --- a/roles/nagios/server/files/nagios/hosts/serverbeach10.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name serverbeach10 -# alias serverbeach10.fedoraproject.org -# use defaulttemplate -# address serverbeach10.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/sign-vault03-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/sign-vault03-mgmt.cfg deleted file mode 100644 index 705775bca0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/sign-vault03-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name sign-vault03.mgmt.fedoraproject.org - alias sign-vault03.mgmt.fedoraproject.org - use mincheck - address sign-vault03.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/sign-vault03.cfg b/roles/nagios/server/files/nagios/hosts/sign-vault03.cfg deleted file mode 100644 index 44600b68c2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/sign-vault03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name sign-vault03 - alias sign-vault03.phx2.fedoraproject.org - use mincheck - address sign-vault03.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/sign-vault04-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/sign-vault04-mgmt.cfg deleted file mode 100644 index ccbcc50022..0000000000 --- a/roles/nagios/server/files/nagios/hosts/sign-vault04-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name sign-vault04.mgmt.fedoraproject.org - alias sign-vault04.mgmt.fedoraproject.org - use mincheck - address sign-vault04.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/sign-vault04.cfg b/roles/nagios/server/files/nagios/hosts/sign-vault04.cfg deleted file mode 100644 index 32563c6fc0..0000000000 --- a/roles/nagios/server/files/nagios/hosts/sign-vault04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name sign-vault04 - alias sign-vault04.phx2.fedoraproject.org - use mincheck - address sign-vault04.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/smtp-mm-coloamer01.cfg b/roles/nagios/server/files/nagios/hosts/smtp-mm-coloamer01.cfg deleted file mode 100644 index b7452732b7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/smtp-mm-coloamer01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name smtp-mm-coloamer01 -# alias smtp-mm-coloamer01.fedoraproject.org -# use defaulttemplate -# address smtp-mm-coloamer01.fedoraproject.org -# parents coloamer01 -#} diff --git a/roles/nagios/server/files/nagios/hosts/smtp-mm-ib01.cfg b/roles/nagios/server/files/nagios/hosts/smtp-mm-ib01.cfg deleted file mode 100644 index 4faa45c342..0000000000 --- a/roles/nagios/server/files/nagios/hosts/smtp-mm-ib01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name smtp-mm-ib01 - alias smtp-mm-ib01.fedoraproject.org - use defaulttemplate - address smtp-mm-ib01.fedoraproject.org - parents ibiblio05 -} diff --git a/roles/nagios/server/files/nagios/hosts/smtp-mm-osuosl01.cfg b/roles/nagios/server/files/nagios/hosts/smtp-mm-osuosl01.cfg deleted file mode 100644 index 25d5ff50e8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/smtp-mm-osuosl01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name smtp-mm-osuosl01 - alias smtp-mm-osuosl01.fedoraproject.org - use defaulttemplate - address smtp-mm-osuosl01.fedoraproject.org - parents osuosl02 -} diff --git a/roles/nagios/server/files/nagios/hosts/smtp-mm-tummy01.cfg b/roles/nagios/server/files/nagios/hosts/smtp-mm-tummy01.cfg deleted file mode 100644 index 8aabb15300..0000000000 --- a/roles/nagios/server/files/nagios/hosts/smtp-mm-tummy01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name smtp-mm-tummy01 - alias smtp-mm-tummy01.fedoraproject.org - use defaulttemplate - address smtp-mm-tummy01.fedoraproject.org - parents tummy01 -} diff --git a/roles/nagios/server/files/nagios/hosts/status-fedora2.cfg b/roles/nagios/server/files/nagios/hosts/status-fedora2.cfg deleted file mode 100644 index 1f4bfddcf3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/status-fedora2.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name status-fedora2 - alias status-fedora2.rhcloud.com - use mincheck - address status-fedora2.rhcloud.com - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/summershum01.cfg b/roles/nagios/server/files/nagios/hosts/summershum01.cfg deleted file mode 100644 index 15b457ba3b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/summershum01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name summershum01 - alias summershum01.phx2.fedoraproject.org - use defaulttemplate - address summershum01.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/sundries01.cfg b/roles/nagios/server/files/nagios/hosts/sundries01.cfg deleted file mode 100644 index b924d13606..0000000000 --- a/roles/nagios/server/files/nagios/hosts/sundries01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name sundries01 - alias sundries01.phx2.fedoraproject.org - use defaulttemplate - address sundries01.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/sundries01.stg.cfg b/roles/nagios/server/files/nagios/hosts/sundries01.stg.cfg deleted file mode 100644 index bd08eecc4c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/sundries01.stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name sundries01.stg - alias sundries01.stg.phx2.fedoraproject.org - use defaulttemplate - address sundries01.stg.phx2.fedoraproject.org - parents virthost12 -} diff --git a/roles/nagios/server/files/nagios/hosts/sundries02.cfg b/roles/nagios/server/files/nagios/hosts/sundries02.cfg deleted file mode 100644 index d03ec69890..0000000000 --- a/roles/nagios/server/files/nagios/hosts/sundries02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name sundries02 - alias sundries02.phx2.fedoraproject.org - use defaulttemplate - address sundries02.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/tagger01.cfg b/roles/nagios/server/files/nagios/hosts/tagger01.cfg deleted file mode 100644 index c77b4a1c03..0000000000 --- a/roles/nagios/server/files/nagios/hosts/tagger01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name tagger01 - alias tagger01.phx2.fedoraproject.org - use defaulttemplate - address tagger01.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/hosts/tagger02.cfg b/roles/nagios/server/files/nagios/hosts/tagger02.cfg deleted file mode 100644 index 8527041409..0000000000 --- a/roles/nagios/server/files/nagios/hosts/tagger02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name tagger02 - alias tagger02.phx2.fedoraproject.org - use defaulttemplate - address tagger02.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/tape02-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/tape02-mgmt.cfg deleted file mode 100644 index 5aa1240bdc..0000000000 --- a/roles/nagios/server/files/nagios/hosts/tape02-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name tape02.mgmt.fedoraproject.org -# alias tape02.mgmt.fedoraproject.org -# use mincheck -# address tape02.mgmt.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/taskotron-dev01.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/taskotron-dev01.qa.fedoraproject.org.cfg deleted file mode 100644 index 4c6c7c4120..0000000000 --- a/roles/nagios/server/files/nagios/hosts/taskotron-dev01.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name taskotron-dev01.qa - alias taskotron-dev01.qa.fedoraproject.org - use defaulttemplate - address taskotron-dev01.qa.fedoraproject.org - parents virthost-comm04 -} diff --git a/roles/nagios/server/files/nagios/hosts/taskotron-stg01.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/taskotron-stg01.qa.fedoraproject.org.cfg deleted file mode 100644 index 32e5bf582b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/taskotron-stg01.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name taskotron-stg01.qa - alias taskotron-stg01.qa.fedoraproject.org - use defaulttemplate - address taskotron-stg01.qa.fedoraproject.org - parents virthost-comm04 -} diff --git a/roles/nagios/server/files/nagios/hosts/taskotron01.qa.fedoraproject.org.cfg b/roles/nagios/server/files/nagios/hosts/taskotron01.qa.fedoraproject.org.cfg deleted file mode 100644 index c3cb6f850d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/taskotron01.qa.fedoraproject.org.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name taskotron01.qa - alias taskotron01.qa.fedoraproject.org - use defaulttemplate - address taskotron01.qa.fedoraproject.org - parents virthost-comm03 -} diff --git a/roles/nagios/server/files/nagios/hosts/telia01.cfg b/roles/nagios/server/files/nagios/hosts/telia01.cfg deleted file mode 100644 index 6cc16adcf8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/telia01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name telia01 -# alias telia01.fedoraproject.org -# use defaulttemplate -# address telia01.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/templates.cfg b/roles/nagios/server/files/nagios/hosts/templates.cfg deleted file mode 100644 index 04bdd25b71..0000000000 --- a/roles/nagios/server/files/nagios/hosts/templates.cfg +++ /dev/null @@ -1,85 +0,0 @@ -define host { - name defaulttemplate - #check_command check-host-alive - check_command check-host-alive-nrpe - max_check_attempts 8 - checks_enabled 1 - retain_status_information 1 - retain_nonstatus_information 1 - notification_interval 15 - notifications_enabled 1 - notification_options d,r - contact_groups fedora-sysadmin-ircbot - - register 0 -} - -define host { - name mincheck - check_command check-host-alive - max_check_attempts 8 - checks_enabled 1 - retain_status_information 1 - retain_nonstatus_information 1 - notification_interval 15 - notifications_enabled 1 - notification_options d,r - contact_groups fedora-sysadmin-ircbot - register 0 -} - -#define host { -# name autoqatemplate -# check_command check-host-alive -# max_check_attempts 8 -# checks_enabled 1 -# retain_status_information 1 -# retain_nonstatus_information 1 -# notification_interval 480 -# notifications_enabled 1 -# notification_options d,r -# contact_groups sysadmin-qa-email -# register 0 -#} - -define host { - name ppc-secondarytemplate - check_command check-host-alive - max_check_attempts 8 - checks_enabled 1 - retain_status_information 1 - retain_nonstatus_information 1 - notification_interval 15 - notifications_enabled 1 - notification_options d,r - contact_groups ppc-secondary-email - register 0 -} - -define host { - name retracetemplate - check_command check-host-alive - max_check_attempts 8 - checks_enabled 1 - retain_status_information 1 - retain_nonstatus_information 1 - notification_interval 15 - notifications_enabled 1 - notification_options d,r - contact_groups retrace-email - register 0 -} - -define host { - name defaultbuilders - max_check_attempts 8 - checks_enabled 1 - retain_status_information 1 - retain_nonstatus_information 1 - notification_interval 15 - notifications_enabled 1 - notification_options d,r - contact_groups fedora-sysadmin-ircbot - register 0 -} - diff --git a/roles/nagios/server/files/nagios/hosts/torrent01.cfg b/roles/nagios/server/files/nagios/hosts/torrent01.cfg deleted file mode 100644 index 21f45327fa..0000000000 --- a/roles/nagios/server/files/nagios/hosts/torrent01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name torrent01 -# alias torrent01.fedoraproject.org -# use defaulttemplate -# address torrent01.fedoraproject.org -# parents ibiblio05 -#} diff --git a/roles/nagios/server/files/nagios/hosts/torrent02.cfg b/roles/nagios/server/files/nagios/hosts/torrent02.cfg deleted file mode 100644 index 462b7dad17..0000000000 --- a/roles/nagios/server/files/nagios/hosts/torrent02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name torrent02 - alias torrent02.fedoraproject.org - use defaulttemplate - address torrent02.fedoraproject.org - parents ibiblio05 -} diff --git a/roles/nagios/server/files/nagios/hosts/tummy01.cfg b/roles/nagios/server/files/nagios/hosts/tummy01.cfg deleted file mode 100644 index 53834e4857..0000000000 --- a/roles/nagios/server/files/nagios/hosts/tummy01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name tummy01 - alias tummy01.fedoraproject.org - use defaulttemplate - address tummy01.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/unbound-ib01.cfg b/roles/nagios/server/files/nagios/hosts/unbound-ib01.cfg deleted file mode 100644 index 8cf230000b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/unbound-ib01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name unbound-ib01 - alias unbound-ib01.fedoraproject.org - use defaulttemplate - address unbound-ib01.fedoraproject.org - parents ibiblio04 -} diff --git a/roles/nagios/server/files/nagios/hosts/unbound-osuosl01.cfg b/roles/nagios/server/files/nagios/hosts/unbound-osuosl01.cfg deleted file mode 100644 index 23dd1dac72..0000000000 --- a/roles/nagios/server/files/nagios/hosts/unbound-osuosl01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name unbound-osuosl01 - alias unbound-osuosl01.fedoraproject.org - use defaulttemplate - address unbound-osuosl01.fedoraproject.org - parents osuosl03 -} diff --git a/roles/nagios/server/files/nagios/hosts/unbound-tummy01.cfg b/roles/nagios/server/files/nagios/hosts/unbound-tummy01.cfg deleted file mode 100644 index 04cbeb2d3b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/unbound-tummy01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name unbound-tummy01 - alias unbound-tummy01.fedoraproject.org - use defaulttemplate - address unbound-tummy01.fedoraproject.org - parents tummy01 -} diff --git a/roles/nagios/server/files/nagios/hosts/value01-stg.cfg b/roles/nagios/server/files/nagios/hosts/value01-stg.cfg deleted file mode 100644 index 5263dab4a6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/value01-stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name value01.stg - alias value01.stg.phx2.fedoraproject.org - use defaulttemplate - address value01.stg.phx2.fedoraproject.org - parents virthost12 -} diff --git a/roles/nagios/server/files/nagios/hosts/value01.cfg b/roles/nagios/server/files/nagios/hosts/value01.cfg deleted file mode 100644 index 0e02bb169b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/value01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name value01 - alias value01.phx2.fedoraproject.org - use defaulttemplate - address value01.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-cc-rdu01.cfg b/roles/nagios/server/files/nagios/hosts/virthost-cc-rdu01.cfg deleted file mode 100644 index cb62ab00ab..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-cc-rdu01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-cc-rdu01 - alias virthost-cc-rdu01.fedoraproject.org - use defaulttemplate - address virthost-cc-rdu01.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm01-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm01-mgmt.cfg deleted file mode 100644 index 12113a5b6f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm01-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name virthost-comm01.mgmt.fedoraproject.org -# alias virthost-comm01.mgmt.fedoraproject.org -# use mincheck -# address virthost-comm01.mgmt.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm01.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm01.cfg deleted file mode 100644 index 4eb4f51147..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name virthost-comm01 -# alias virthost-comm01.qa.fedoraproject.org -# use defaulttemplate -# address virthost-comm01.qa.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm02-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm02-mgmt.cfg deleted file mode 100644 index 2f3b151be9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm02-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-comm02.mgmt.fedoraproject.org - alias virthost-comm02.mgmt.fedoraproject.org - use mincheck - address virthost-comm02.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm02.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm02.cfg deleted file mode 100644 index 3560319c01..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-comm02 - alias virthost-comm02.qa.fedoraproject.org - use defaulttemplate - address virthost-comm02.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm03-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm03-mgmt.cfg deleted file mode 100644 index 72bc693297..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm03-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-comm03.mgmt.fedoraproject.org - alias virthost-comm03.mgmt.fedoraproject.org - use mincheck - address virthost-comm03.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm03.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm03.cfg deleted file mode 100644 index 36250e770b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-comm03 - alias virthost-comm03.qa.fedoraproject.org - use defaulttemplate - address virthost-comm03.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm04-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm04-mgmt.cfg deleted file mode 100644 index 35c960278a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm04-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-comm04.mgmt.fedoraproject.org - alias virthost-comm04.mgmt.fedoraproject.org - use mincheck - address virthost-comm04.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-comm04.cfg b/roles/nagios/server/files/nagios/hosts/virthost-comm04.cfg deleted file mode 100644 index 0a52195932..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-comm04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-comm04 - alias virthost-comm04.qa.fedoraproject.org - use defaulttemplate - address virthost-comm04.qa.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost-rdu01.cfg b/roles/nagios/server/files/nagios/hosts/virthost-rdu01.cfg deleted file mode 100644 index c397c8ee43..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost-rdu01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost-rdu01 - alias virthost-rdu01.vpn.fedoraproject.org - use defaulttemplate - address virthost-rdu01.vpn.fedoraproject.org - parents bastion-vpn -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost01-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost01-mgmt.cfg deleted file mode 100644 index 31140450fb..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost01-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost01.mgmt.fedoraproject.org - alias virthost01.mgmt.fedoraproject.org - use mincheck - address virthost01.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost01.cfg b/roles/nagios/server/files/nagios/hosts/virthost01.cfg deleted file mode 100644 index 478a70019b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost01 - alias virthost01.phx2.fedoraproject.org - use defaulttemplate - address virthost01.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost02-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost02-mgmt.cfg deleted file mode 100644 index fd1d46516b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost02-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost02.mgmt.fedoraproject.org - alias virthost02.mgmt.fedoraproject.org - use mincheck - address virthost02.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost02.cfg b/roles/nagios/server/files/nagios/hosts/virthost02.cfg deleted file mode 100644 index 00c6852c18..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost02 - alias virthost02.phx2.fedoraproject.org - use defaulttemplate - address virthost02.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost03-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost03-mgmt.cfg deleted file mode 100644 index f81ecd56fa..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost03-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost03.mgmt.fedoraproject.org - alias virthost03.mgmt.fedoraproject.org - use mincheck - address virthost03.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost03.cfg b/roles/nagios/server/files/nagios/hosts/virthost03.cfg deleted file mode 100644 index 340c242cd9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost03.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost03 - alias virthost03.phx2.fedoraproject.org - use defaulttemplate - address virthost03.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost04-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost04-mgmt.cfg deleted file mode 100644 index fb6bbb9d0c..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost04-mgmt.cfg +++ /dev/null @@ -1,8 +0,0 @@ -#define host { -# host_name virthost04.mgmt.fedoraproject.org -# alias virthost04.mgmt.fedoraproject.org -# use mincheck -# address virthost04.mgmt.fedoraproject.org -# parents fwsm01-gw -#} - diff --git a/roles/nagios/server/files/nagios/hosts/virthost04.cfg b/roles/nagios/server/files/nagios/hosts/virthost04.cfg deleted file mode 100644 index 88fb998d76..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost04.cfg +++ /dev/null @@ -1,7 +0,0 @@ -#define host { -# host_name virthost04 -# alias virthost04.phx2.fedoraproject.org -# use defaulttemplate -# address virthost04.phx2.fedoraproject.org -# parents fwsm01-gw -#} diff --git a/roles/nagios/server/files/nagios/hosts/virthost05-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost05-mgmt.cfg deleted file mode 100644 index 4d6ef1930b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost05-mgmt.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name virthost05.mgmt.fedoraproject.org - alias virthost05.mgmt.fedoraproject.org - use mincheck - address virthost05.mgmt.fedoraproject.org - parents fwsm01-gw -} - diff --git a/roles/nagios/server/files/nagios/hosts/virthost05.cfg b/roles/nagios/server/files/nagios/hosts/virthost05.cfg deleted file mode 100644 index a6497365ff..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost05.cfg +++ /dev/null @@ -1,8 +0,0 @@ -define host { - host_name virthost05 - alias virthost05.phx2.fedoraproject.org - use defaulttemplate - address virthost05.phx2.fedoraproject.org - parents fwsm01-gw -} - diff --git a/roles/nagios/server/files/nagios/hosts/virthost06-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost06-mgmt.cfg deleted file mode 100644 index 945b9954a9..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost06-mgmt.cfg +++ /dev/null @@ -1,8 +0,0 @@ -# define host { -# host_name virthost06.mgmt.fedoraproject.org -# alias virthost06.mgmt.fedoraproject.org -# use mincheck -# address virthost06.mgmt.fedoraproject.org -# parents fwsm01-gw -# } - diff --git a/roles/nagios/server/files/nagios/hosts/virthost06.cfg b/roles/nagios/server/files/nagios/hosts/virthost06.cfg deleted file mode 100644 index 9186e31526..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost06.cfg +++ /dev/null @@ -1,8 +0,0 @@ -# define host { -# host_name virthost06 -# alias virthost06.phx2.fedoraproject.org -# use defaulttemplate -# address virthost06.phx2.fedoraproject.org -# parents fwsm01-gw -# } - diff --git a/roles/nagios/server/files/nagios/hosts/virthost07-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost07-mgmt.cfg deleted file mode 100644 index 4146694b21..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost07-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name virthost07.mgmt.fedoraproject.org -# alias virthost07.mgmt.fedoraproject.org -# use mincheck -# address virthost07.mgmt.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/virthost07.cfg b/roles/nagios/server/files/nagios/hosts/virthost07.cfg deleted file mode 100644 index 4c5e938450..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost07.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name virthost07 -# alias virthost07.phx2.fedoraproject.org -# use defaulttemplate -# address virthost07.phx2.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/virthost08-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost08-mgmt.cfg deleted file mode 100644 index 239d782fec..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost08-mgmt.cfg +++ /dev/null @@ -1,8 +0,0 @@ -# define host { -# host_name virthost08.mgmt.fedoraproject.org -# alias virthost08.mgmt.fedoraproject.org -# use mincheck -# address virthost08.mgmt.fedoraproject.org -# parents fwsm01-gw -# } - diff --git a/roles/nagios/server/files/nagios/hosts/virthost08.cfg b/roles/nagios/server/files/nagios/hosts/virthost08.cfg deleted file mode 100644 index 154b5c5386..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost08.cfg +++ /dev/null @@ -1,8 +0,0 @@ -# define host { -# host_name virthost08 -# alias virthost08.phx2.fedoraproject.org -# use defaulttemplate -# address virthost08.phx2.fedoraproject.org -# parents fwsm01-gw -# } - diff --git a/roles/nagios/server/files/nagios/hosts/virthost09-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost09-mgmt.cfg deleted file mode 100644 index 41b8558239..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost09-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name virthost09.mgmt.fedoraproject.org -# alias virthost09.mgmt.fedoraproject.org -# use mincheck -# address virthost09.mgmt.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/virthost09.cfg b/roles/nagios/server/files/nagios/hosts/virthost09.cfg deleted file mode 100644 index c143d19af6..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost09.cfg +++ /dev/null @@ -1,7 +0,0 @@ -# define host { -# host_name virthost09 -# alias virthost09.phx2.fedoraproject.org -# use defaulttemplate -# address virthost09.phx2.fedoraproject.org -# parents fwsm01-gw -# } diff --git a/roles/nagios/server/files/nagios/hosts/virthost11-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost11-mgmt.cfg deleted file mode 100644 index 3dc36f9630..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost11-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost11.mgmt.fedoraproject.org - alias virthost11.mgmt.fedoraproject.org - use mincheck - address virthost11.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost11.cfg b/roles/nagios/server/files/nagios/hosts/virthost11.cfg deleted file mode 100644 index 26f852daf8..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost11.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost11 - alias virthost11.phx2.fedoraproject.org - use defaulttemplate - address virthost11.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost12-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost12-mgmt.cfg deleted file mode 100644 index 36144b109a..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost12-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost12.mgmt.fedoraproject.org - alias virthost12.mgmt.fedoraproject.org - use mincheck - address virthost12.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost12.cfg b/roles/nagios/server/files/nagios/hosts/virthost12.cfg deleted file mode 100644 index 4b67bddf6e..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost12.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost12 - alias virthost12.phx2.fedoraproject.org - use defaulttemplate - address virthost12.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost14-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost14-mgmt.cfg deleted file mode 100644 index 74788be145..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost14-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost14.mgmt.fedoraproject.org - alias virthost14.mgmt.fedoraproject.org - use mincheck - address virthost14.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost14.cfg b/roles/nagios/server/files/nagios/hosts/virthost14.cfg deleted file mode 100644 index c081d93eb7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost14.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost14 - alias virthost14.phx2.fedoraproject.org - use defaulttemplate - address virthost14.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost15-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost15-mgmt.cfg deleted file mode 100644 index 6e8459818b..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost15-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost15.mgmt.fedoraproject.org - alias virthost15.mgmt.fedoraproject.org - use mincheck - address virthost15.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost15.cfg b/roles/nagios/server/files/nagios/hosts/virthost15.cfg deleted file mode 100644 index 364d80e705..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost15.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost15 - alias virthost15.phx2.fedoraproject.org - use defaulttemplate - address virthost15.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost16-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost16-mgmt.cfg deleted file mode 100644 index 1742185495..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost16-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost16.mgmt.fedoraproject.org - alias virthost16.mgmt.fedoraproject.org - use mincheck - address virthost16.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost16.cfg b/roles/nagios/server/files/nagios/hosts/virthost16.cfg deleted file mode 100644 index 0a6cb23fcb..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost16.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost16 - alias virthost16.phx2.fedoraproject.org - use defaulttemplate - address virthost16.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost17-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost17-mgmt.cfg deleted file mode 100644 index 774671c54f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost17-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost17.mgmt.fedoraproject.org - alias virthost17.mgmt.fedoraproject.org - use mincheck - address virthost17.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost17.cfg b/roles/nagios/server/files/nagios/hosts/virthost17.cfg deleted file mode 100644 index 4e65c9f39f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost17.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost17 - alias virthost17.phx2.fedoraproject.org - use defaulttemplate - address virthost17.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost18-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost18-mgmt.cfg deleted file mode 100644 index 78d9785f4d..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost18-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost18.mgmt.fedoraproject.org - alias virthost18.mgmt.fedoraproject.org - use mincheck - address virthost18.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost18.cfg b/roles/nagios/server/files/nagios/hosts/virthost18.cfg deleted file mode 100644 index 8ae2fec3fb..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost18.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost18 - alias virthost18.phx2.fedoraproject.org - use defaulttemplate - address virthost18.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost19-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost19-mgmt.cfg deleted file mode 100644 index 283be93af3..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost19-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost19.mgmt.fedoraproject.org - alias virthost19.mgmt.fedoraproject.org - use mincheck - address virthost19.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost19.cfg b/roles/nagios/server/files/nagios/hosts/virthost19.cfg deleted file mode 100644 index 04ce3618dd..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost19.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost19 - alias virthost19.phx2.fedoraproject.org - use defaulttemplate - address virthost19.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost20-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost20-mgmt.cfg deleted file mode 100644 index 4b46142a61..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost20-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost20.mgmt.fedoraproject.org - alias virthost20.mgmt.fedoraproject.org - use mincheck - address virthost20.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost20.cfg b/roles/nagios/server/files/nagios/hosts/virthost20.cfg deleted file mode 100644 index 86a4eb4560..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost20.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost20 - alias virthost20.phx2.fedoraproject.org - use defaulttemplate - address virthost20.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost21-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost21-mgmt.cfg deleted file mode 100644 index 7f5f7e83f2..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost21-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost21.mgmt.fedoraproject.org - alias virthost21.mgmt.fedoraproject.org - use mincheck - address virthost21.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost21.cfg b/roles/nagios/server/files/nagios/hosts/virthost21.cfg deleted file mode 100644 index 99508dcf0f..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost21.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost21 - alias virthost21.phx2.fedoraproject.org - use defaulttemplate - address virthost21.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost22-mgmt.cfg b/roles/nagios/server/files/nagios/hosts/virthost22-mgmt.cfg deleted file mode 100644 index fba7eaccb7..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost22-mgmt.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost22.mgmt.fedoraproject.org - alias virthost22.mgmt.fedoraproject.org - use mincheck - address virthost22.mgmt.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/virthost22.cfg b/roles/nagios/server/files/nagios/hosts/virthost22.cfg deleted file mode 100644 index cf8e9e6795..0000000000 --- a/roles/nagios/server/files/nagios/hosts/virthost22.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name virthost22 - alias virthost22.phx2.fedoraproject.org - use defaulttemplate - address virthost22.phx2.fedoraproject.org - parents fwsm01-gw -} diff --git a/roles/nagios/server/files/nagios/hosts/wiki01.cfg b/roles/nagios/server/files/nagios/hosts/wiki01.cfg deleted file mode 100644 index 60339bf270..0000000000 --- a/roles/nagios/server/files/nagios/hosts/wiki01.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name wiki01 - alias wiki01.phx2.fedoraproject.org - use defaulttemplate - address wiki01.phx2.fedoraproject.org - parents virthost03 -} diff --git a/roles/nagios/server/files/nagios/hosts/wiki01.stg.cfg b/roles/nagios/server/files/nagios/hosts/wiki01.stg.cfg deleted file mode 100644 index 9e10797b92..0000000000 --- a/roles/nagios/server/files/nagios/hosts/wiki01.stg.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name wiki01.stg - alias wiki01.stg.phx2.fedoraproject.org - use defaulttemplate - address wiki01.stg.phx2.fedoraproject.org - parents virthost12 -} diff --git a/roles/nagios/server/files/nagios/hosts/wiki02.cfg b/roles/nagios/server/files/nagios/hosts/wiki02.cfg deleted file mode 100644 index 43afaa0f80..0000000000 --- a/roles/nagios/server/files/nagios/hosts/wiki02.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define host { - host_name wiki02 - alias wiki02.phx2.fedoraproject.org - use defaulttemplate - address wiki02.phx2.fedoraproject.org - parents virthost01 -} diff --git a/roles/nagios/server/files/nagios/minimal.cfg b/roles/nagios/server/files/nagios/minimal.cfg deleted file mode 100644 index c41bec4d91..0000000000 --- a/roles/nagios/server/files/nagios/minimal.cfg +++ /dev/null @@ -1,362 +0,0 @@ -############################################################################### -# MINIMAL.CFG -# -# MINIMALISTIC OBJECT CONFIG FILE (Template-Based Object File Format) -# -# Last Modified: 08-10-2005 -# -# -# NOTE: This config file is intended to be used to test a Nagios installation -# that has been compiled with support for the template-based object -# configuration files. -# -# This config file is intended to servce as an *extremely* simple -# example of how you can create your object configuration file(s). -# If you're interested in more complex object configuration files for -# Nagios, look in the sample-config/template-object/ subdirectory of -# the distribution. -# -############################################################################### - - - -############################################################################### -############################################################################### -# -# TIME PERIODS -# -############################################################################### -############################################################################### - -# This defines a timeperiod where all times are valid for checks, -# notifications, etc. The classic "24x7" support nightmare. :-) - -define timeperiod{ - timeperiod_name 24x7 - alias 24 Hours A Day, 7 Days A Week - sunday 00:00-24:00 - monday 00:00-24:00 - tuesday 00:00-24:00 - wednesday 00:00-24:00 - thursday 00:00-24:00 - friday 00:00-24:00 - saturday 00:00-24:00 - } - - - - -############################################################################### -############################################################################### -# -# COMMANDS -# -############################################################################### -############################################################################### - -# This is a sample service notification command that can be used to send email -# notifications (about service alerts) to contacts. -# 'check_ssh' command definition -define command{ - command_name notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$OUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ - } - - -# This is a sample host notification command that can be used to send email -# notifications (about host alerts) to contacts. - -define command{ - command_name host-notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $OUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ - } - - -# Command to check to see if a host is "alive" (up) by pinging it - -define command{ - command_name check-host-alive - command_line $USER1$/check_ping -4 -H $HOSTADDRESS$ -w 300,99% -c 500,100% -p 2 - } - - -# Generic command to check a device by pinging it - -define command{ - command_name check_ping - command_line $USER1$/check_ping -4 -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 - } - - -# Command used to check disk space usage on local partitions - -define command{ - command_name check_local_disk - command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ - } - - -# Command used to check the number of currently logged in users on the -# local machine - -define command{ - command_name check_local_users - command_line $USER1$/check_users -w $ARG1$ -c $ARG2$ - } - - -# Command to check the number of running processing on the local machine - -define command{ - command_name check_local_procs - command_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ - } - - -# Command to check the load on the local machine - -define command{ - command_name check_local_load - command_line $USER1$/check_load -w $ARG1$ -c $ARG2$ - } - - - -############################################################################### -############################################################################### -# -# CONTACTS -# -############################################################################### -############################################################################### - -# In this simple config file, a single contact will receive all alerts. -# This assumes that you have an account (or email alias) called -# "nagios-admin" on the local host. - -define contact{ - contact_name nagios-admin - alias Nagios Admin - service_notification_period 24x7 - host_notification_period 24x7 - service_notification_options w,u,c,r - host_notification_options d,r - service_notification_commands notify-by-email - host_notification_commands host-notify-by-email - email admin@fedoraproject.org - } - - - -############################################################################### -############################################################################### -# -# CONTACT GROUPS -# -############################################################################### -############################################################################### - -# We only have one contact in this simple configuration file, so there is -# no need to create more than one contact group. - -define contactgroup{ - contactgroup_name admins - alias Nagios Administrators - members nagios-admin - } - - - -############################################################################### -############################################################################### -# -# HOSTS -# -############################################################################### -############################################################################### - -# Generic host definition template - This is NOT a real host, just a template! - -define host{ - name generic-host ; The name of this host template - notifications_enabled 1 ; Host notifications are enabled - event_handler_enabled 1 ; Host event handler is enabled - flap_detection_enabled 1 ; Flap detection is enabled - failure_prediction_enabled 1 ; Failure prediction is enabled - process_perf_data 1 ; Process performance data - retain_status_information 1 ; Retain status information across program restarts - retain_nonstatus_information 1 ; Retain non-status information across program restarts - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE! - } - - -# Since this is a simple configuration file, we only monitor one host - the -# local host (this machine). - -define host{ - use generic-host ; Name of host template to use - host_name localhost - alias localhost - address 127.0.0.1 - check_command check-host-alive - max_check_attempts 10 - notification_interval 120 - notification_period 24x7 - notification_options d,r - contact_groups admins - } - - - -############################################################################### -############################################################################### -# -# HOST GROUPS -# -############################################################################### -############################################################################### - -# We only have one host in our simple config file, so there is no need to -# create more than one hostgroup. - -define hostgroup{ - hostgroup_name test - alias Test Servers - members localhost - } - - - -############################################################################### -############################################################################### -# -# SERVICES -# -############################################################################### -############################################################################### - -# Generic service definition template - This is NOT a real service, just a template! - -define service{ - name generic-service ; The 'name' of this service template - active_checks_enabled 1 ; Active service checks are enabled - passive_checks_enabled 1 ; Passive service checks are enabled/accepted - parallelize_check 1 ; Active service checks should be parallelized (disabling this can lead to major performance problems) - obsess_over_service 1 ; We should obsess over this service (if necessary) - check_freshness 0 ; Default is to NOT check service 'freshness' - notifications_enabled 1 ; Service notifications are enabled - event_handler_enabled 1 ; Service event handler is enabled - flap_detection_enabled 1 ; Flap detection is enabled - failure_prediction_enabled 1 ; Failure prediction is enabled - process_perf_data 1 ; Process performance data - retain_status_information 1 ; Retain status information across program restarts - retain_nonstatus_information 1 ; Retain non-status information across program restarts - register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEMPLATE! - } - - -# Define a service to "ping" the local machine - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description PING - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_ping!100.0,20%!500.0,60% - } - - -# Define a service to check the disk space of the root partition -# on the local machine. Warning if < 20% free, critical if -# < 10% free space on partition. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Root Partition - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_disk!20%!10%!/ - } - - - -# Define a service to check the number of currently logged in -# users on the local machine. Warning if > 20 users, critical -# if > 50 users. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Current Users - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_users!20!50 - } - - -# Define a service to check the number of currently running procs -# on the local machine. Warning if > 250 processes, critical if -# > 400 users. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Total Processes - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_procs!250!400 - } - - - -# Define a service to check the load on the local machine. - -define service{ - use generic-service ; Name of service template to use - host_name localhost - service_description Current Load - is_volatile 0 - check_period 24x7 - max_check_attempts 4 - normal_check_interval 5 - retry_check_interval 1 - contact_groups admins - notification_options w,u,c,r - notification_interval 960 - notification_period 24x7 - check_command check_local_load!5.0,4.0,3.0!10.0,6.0,4.0 - } - - - -# EOF diff --git a/roles/nagios/server/files/nagios/misccommands.cfg b/roles/nagios/server/files/nagios/misccommands.cfg deleted file mode 100644 index 9e1a40845e..0000000000 --- a/roles/nagios/server/files/nagios/misccommands.cfg +++ /dev/null @@ -1,137 +0,0 @@ -################################################################################ -# Sample object config file for Nagios -# -# Read the documentation for more information on this configuration file. I've -# provided some comments here, but things may not be so clear without further -# explanation, so make sure to read the HTML documentation! -# -# Last Modified: 12-17-2005 -# -################################################################################ - - -################################################################################ -# COMMAND DEFINITIONS -# -# SYNTAX: -# -# define command{ -# template -# name -# command_name -# command_line -# } -# -# WHERE: -# -# = object name of another command definition that should be -# used as a template for this definition (optional) -# = object name of command definition, referenced by other -# command definitions that use it as a template (optional) -# = name of the command, as recognized/used by Nagios -# = command line -# -################################################################################ - - - - -################################################################################ -# -# SAMPLE NOTIFICATION COMMANDS -# -# These are some example notification commands. They may or may not work on -# your system without modification. As an example, some systems will require -# you to use "/usr/bin/mailx" instead of "/usr/bin/mail" in the commands below. -# -################################################################################ - - -# 'host-notify-by-email' command definition -define command{ - command_name host-notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\nSource: $$(hostname)\n\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ - } - -# 'notify-by-epager' command definition -define command{ - command_name notify-by-epager - command_line /usr/bin/printf "%b" "Service: $SERVICEDESC$\nHost: $HOSTNAME$\nInfo: $SERVICEOUTPUT$\nSource: $$(hostname -s)\nDate: $LONGDATETIME$" | /bin/mail -s "$NOTIFICATIONTYPE$: $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$" $CONTACTPAGER$ - } - - -# 'host-notify-by-epager' command definition -define command{ - command_name host-notify-by-epager - command_line /usr/bin/printf "%b" "Host '$HOSTALIAS$' is $HOSTSTATE$\nInfo: $HOSTOUTPUT$\nSource: $$(hostname -s)\nTime: $LONGDATETIME$" | /bin/mail -s "$NOTIFICATIONTYPE$ alert - Host $HOSTNAME$ is $HOSTSTATE$" $CONTACTPAGER$ - } - -# 'host-notify-by-ircbot' command definition -define command{ - command_name host-notify-by-ircbot - command_line /usr/bin/printf "%b" "#fedora-noc $NOTIFICATIONTYPE$ - $HOSTALIAS$ is $HOSTSTATE$: $HOSTOUTPUT$ ($$(hostname -s)) $HOSTACKAUTHOR$ $SERVICEACKAUTHOR$" | /usr/local/bin/irc-colorize.py | nc -w 1 value01 5050 - } - -# 'notify-by-email' command definition -define command{ - command_name notify-by-email - command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nSource: $$(hostname)\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ - } - -# 'notify-by-ircbot' command definition -define command{ - command_name notify-by-ircbot - command_line /usr/bin/printf "%b" "#fedora-noc $NOTIFICATIONTYPE$ - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$: $SERVICEOUTPUT$ ($$(hostname -s)) $HOSTACKAUTHOR$ $SERVICEACKAUTHOR$" | /usr/local/bin/irc-colorize.py | nc -w 1 value01 5050 - } - -# 'host-notify-by-fedmsg' command definition -define command{ - command_name host-notify-by-fedmsg - command_line /usr/bin/echo '{"type": "$NOTIFICATIONTYPE$", "host": "$HOSTALIAS$", "state": "$HOSTSTATE$", "output": "$HOSTOUTPUT$", "host_ack_author": "$HOSTACKAUTHOR$", "service_ack_author": "$SERVICEACKAUTHOR$"}' | fedmsg-logger --cert-prefix nagios --modname nagios --topic host.state.change --json-input - } - -# 'notify-by-fedmsg' command definition -define command{ - command_name notify-by-fedmsg - command_line /usr/bin/echo '{"type": "$NOTIFICATIONTYPE$", "host": "$HOSTALIAS$", "state": "$SERVICESTATE$", "service": "$SERVICEDESC$", "output": "$SERVICEOUTPUT$", "host_ack_author": "$HOSTACKAUTHOR$", "service_ack_author": "$SERVICEACKAUTHOR$"}' | fedmsg-logger --cert-prefix nagios --modname nagios --topic service.state.change --json-input - } - -# 'notify-by-xmpp' command definition -#define command{ -# command_name notify-by-xmpp -# command_line /usr/local/bin/xmppsend -a /etc/nagios/private/xmppnagios.ini "Service: $SERVICEDESC$\nHost: $HOSTNAME$\nInfo: $SERVICEOUTPUT$\nDate: $LONGDATETIME$" $CONTACTEMAIL$ -# } - - -# 'host-notify-by-xmpp' command definition -#define command{ -# command_name host-notify-by-xmpp -# command_line /usr/local/bin/xmppsend -a /etc/nagios/private/xmppnagios.ini "Host '$HOSTALIAS$' is $HOSTSTATE$\nInfo: $HOSTOUTPUT$\nDate: $LONGDATETIME$" $CONTACTEMAIL$ -# } - - - -################################################################################ -# -# SAMPLE PERFORMANCE DATA COMMANDS -# -# These are sample performance data commands that can be used to send performance -# data output to two text files (one for hosts, another for services). If you -# plan on simply writing performance data out to a file, consider using the -# host_perfdata_file and service_perfdata_file options in the main config file. -# -################################################################################ - - -# 'process-host-perfdata' command definition -define command{ - command_name process-host-perfdata - command_line /usr/bin/printf "%b" "$LASTHOSTCHECK$\t$HOSTNAME$\t$HOSTSTATE$\t$HOSTATTEMPT$\t$HOSTSTATETYPE$\t$HOSTEXECUTIONTIME$\t$HOSTOUTPUT$\t$HOSTPERFDATA$\n" >> /var/log/nagios/host-perfdata.out - } - - -# 'process-service-perfdata' command definition -define command{ - command_name process-service-perfdata - command_line /usr/bin/printf "%b" "$LASTSERVICECHECK$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICESTATE$\t$SERVICEATTEMPT$\t$SERVICESTATETYPE$\t$SERVICEEXECUTIONTIME$\t$SERVICELATENCY$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$\n" >> /var/log/nagios/service-perfdata.out - } diff --git a/roles/nagios/server/files/nagios/nagios.cfg b/roles/nagios/server/files/nagios/nagios.cfg deleted file mode 100644 index b08ebff3d0..0000000000 --- a/roles/nagios/server/files/nagios/nagios.cfg +++ /dev/null @@ -1,1361 +0,0 @@ -############################################################################## -# -# NAGIOS.CFG - Sample Main Config File for Nagios 4.2.4 -# -# Read the documentation for more information on this configuration -# file. I've provided some comments here, but things may not be so -# clear without further explanation. -# -# -############################################################################## - - -# LOG FILE -# This is the main log file where service and host events are logged -# for historical purposes. This should be the first option specified -# in the config file!!! - -log_file=/var/log/nagios/nagios.log - - - -# OBJECT CONFIGURATION FILE(S) -# These are the object configuration files in which you define hosts, -# host groups, contacts, contact groups, services, etc. -# You can split your object definitions across several config files -# if you wish (as shown below), or keep them all in a single config file. - -# You can specify individual object config files as shown below: -#cfg_file=/etc/nagios/objects/commands.cfg -#cfg_file=/etc/nagios/objects/contacts.cfg -cfg_file=/etc/nagios/timeperiods.cfg -#cfg_file=/etc/nagios/objects/templates.cfg -cfg_file=/etc/nagios/escalations.cfg -cfg_file=/etc/nagios/checkcommands.cfg -cfg_file=/etc/nagios/misccommands.cfg - -# Definitions for monitoring the local (Linux) host -#cfg_file=/etc/nagios/objects/localhost.cfg - -# Definitions for monitoring a Windows machine -#cfg_file=/etc/nagios/objects/windows.cfg - -# Definitions for monitoring a router/switch -#cfg_file=/etc/nagios/objects/switch.cfg - -# Definitions for monitoring a network printer -#cfg_file=/etc/nagios/objects/printer.cfg - - -# You can also tell Nagios to process all config files (with a .cfg -# extension) in a particular directory by using the cfg_dir -# directive as shown below: - -#cfg_dir=/etc/nagios/servers -#cfg_dir=/etc/nagios/printers -#cfg_dir=/etc/nagios/switches -#cfg_dir=/etc/nagios/routers - -cfg_dir=/etc/nagios/hosts -cfg_dir=/etc/nagios/hostgroups -cfg_dir=/etc/nagios/services -cfg_dir=/etc/nagios/contacts -cfg_dir=/etc/nagios/contactgroups -cfg_dir=/etc/nagios/servicegroups -cfg_dir=/etc/nagios/servicedeps - -cfg_dir=/etc/nagios/conf.d - - - - -# OBJECT CACHE FILE -# This option determines where object definitions are cached when -# Nagios starts/restarts. The CGIs read object definitions from -# this cache file (rather than looking at the object config files -# directly) in order to prevent inconsistencies that can occur -# when the config files are modified after Nagios starts. - -object_cache_file=/var/spool/nagios/objects.cache - - - -# PRE-CACHED OBJECT FILE -# This options determines the location of the precached object file. -# If you run Nagios with the -p command line option, it will preprocess -# your object configuration file(s) and write the cached config to this -# file. You can then start Nagios with the -u option to have it read -# object definitions from this precached file, rather than the standard -# object configuration files (see the cfg_file and cfg_dir options above). -# Using a precached object file can speed up the time needed to (re)start -# the Nagios process if you've got a large and/or complex configuration. -# Read the documentation section on optimizing Nagios to find our more -# about how this feature works. - -precached_object_file=/var/spool/nagios/objects.precache - - - -# RESOURCE FILE -# This is an optional resource file that contains $USERx$ macro -# definitions. Multiple resource files can be specified by using -# multiple resource_file definitions. The CGIs will not attempt to -# read the contents of resource files, so information that is -# considered to be sensitive (usernames, passwords, etc) can be -# defined as macros in this file and restrictive permissions (600) -# can be placed on this file. - -resource_file=/etc/nagios/private/resource.cfg - - - -# STATUS FILE -# This is where the current status of all monitored services and -# hosts is stored. Its contents are read and processed by the CGIs. -# The contents of the status file are deleted every time Nagios -# restarts. - -status_file=/var/spool/nagios/status.dat - - - -# STATUS FILE UPDATE INTERVAL -# This option determines the frequency (in seconds) that -# Nagios will periodically dump program, host, and -# service status data. - -status_update_interval=10 - - - -# NAGIOS USER -# This determines the effective user that Nagios should run as. -# You can either supply a username or a UID. - -nagios_user=nagios - - - -# NAGIOS GROUP -# This determines the effective group that Nagios should run as. -# You can either supply a group name or a GID. - -nagios_group=nagios - - - -# EXTERNAL COMMAND OPTION -# This option allows you to specify whether or not Nagios should check -# for external commands (in the command file defined below). By default -# Nagios will *not* check for external commands, just to be on the -# cautious side. If you want to be able to use the CGI command interface -# you will have to enable this. -# Values: 0 = disable commands, 1 = enable commands - -check_external_commands=1 - - - -# EXTERNAL COMMAND FILE -# This is the file that Nagios checks for external command requests. -# It is also where the command CGI will write commands that are submitted -# by users, so it must be writeable by the user that the web server -# is running as (usually 'nobody'). Permissions should be set at the -# directory level instead of on the file, as the file is deleted every -# time its contents are processed. - -command_file=/var/spool/nagios/cmd/nagios.cmd - - - -# QUERY HANDLER INTERFACE -# This is the socket that is created for the Query Handler interface - -query_socket=/var/spool/nagios/cmd/nagios.qh - - - -# LOCK FILE -# This is the lockfile that Nagios will use to store its PID number -# in when it is running in daemon mode. - -lock_file=/var/run/nagios/nagios.pid - - - -# TEMP FILE -# This is a temporary file that is used as scratch space when Nagios -# updates the status log, cleans the comment file, etc. This file -# is created, used, and deleted throughout the time that Nagios is -# running. - -temp_file=/var/spool/nagios/nagios.tmp - - - -# TEMP PATH -# This is path where Nagios can create temp files for service and -# host check results, etc. - -temp_path=/tmp - - - -# EVENT BROKER OPTIONS -# Controls what (if any) data gets sent to the event broker. -# Values: 0 = Broker nothing -# -1 = Broker everything -# = See documentation - -event_broker_options=-1 - - - -# EVENT BROKER MODULE(S) -# This directive is used to specify an event broker module that should -# by loaded by Nagios at startup. Use multiple directives if you want -# to load more than one module. Arguments that should be passed to -# the module at startup are seperated from the module path by a space. -# -#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -# WARNING !!! WARNING !!! WARNING !!! WARNING !!! WARNING !!! WARNING -#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -# -# Do NOT overwrite modules while they are being used by Nagios or Nagios -# will crash in a fiery display of SEGFAULT glory. This is a bug/limitation -# either in dlopen(), the kernel, and/or the filesystem. And maybe Nagios... -# -# The correct/safe way of updating a module is by using one of these methods: -# 1. Shutdown Nagios, replace the module file, restart Nagios -# 2. Delete the original module file, move the new module file into place, restart Nagios -# -# Example: -# -# broker_module= [moduleargs] - -#broker_module=/somewhere/module1.o -#broker_module=/somewhere/module2.o arg1 arg2=3 debug=0 - - - -# LOG ROTATION METHOD -# This is the log rotation method that Nagios should use to rotate -# the main log file. Values are as follows.. -# n = None - don't rotate the log -# h = Hourly rotation (top of the hour) -# d = Daily rotation (midnight every day) -# w = Weekly rotation (midnight on Saturday evening) -# m = Monthly rotation (midnight last day of month) - -log_rotation_method=d - - - -# LOG ARCHIVE PATH -# This is the directory where archived (rotated) log files should be -# placed (assuming you've chosen to do log rotation). - -log_archive_path=/var/log/nagios/archives - - - -# LOGGING OPTIONS -# If you want messages logged to the syslog facility, as well as the -# Nagios log file set this option to 1. If not, set it to 0. - -use_syslog=1 - - - -# NOTIFICATION LOGGING OPTION -# If you don't want notifications to be logged, set this value to 0. -# If notifications should be logged, set the value to 1. - -log_notifications=1 - - - -# SERVICE RETRY LOGGING OPTION -# If you don't want service check retries to be logged, set this value -# to 0. If retries should be logged, set the value to 1. - -log_service_retries=1 - - - -# HOST RETRY LOGGING OPTION -# If you don't want host check retries to be logged, set this value to -# 0. If retries should be logged, set the value to 1. - -log_host_retries=1 - - - -# EVENT HANDLER LOGGING OPTION -# If you don't want host and service event handlers to be logged, set -# this value to 0. If event handlers should be logged, set the value -# to 1. - -log_event_handlers=1 - - - -# INITIAL STATES LOGGING OPTION -# If you want Nagios to log all initial host and service states to -# the main log file (the first time the service or host is checked) -# you can enable this option by setting this value to 1. If you -# are not using an external application that does long term state -# statistics reporting, you do not need to enable this option. In -# this case, set the value to 0. - -log_initial_states=0 - - - -# CURRENT STATES LOGGING OPTION -# If you don't want Nagios to log all current host and service states -# after log has been rotated to the main log file, you can disable this -# option by setting this value to 0. Default value is 1. - -log_current_states=1 - - - -# EXTERNAL COMMANDS LOGGING OPTION -# If you don't want Nagios to log external commands, set this value -# to 0. If external commands should be logged, set this value to 1. -# Note: This option does not include logging of passive service -# checks - see the option below for controlling whether or not -# passive checks are logged. - -log_external_commands=1 - - - -# PASSIVE CHECKS LOGGING OPTION -# If you don't want Nagios to log passive host and service checks, set -# this value to 0. If passive checks should be logged, set -# this value to 1. - -log_passive_checks=1 - - - -# GLOBAL HOST AND SERVICE EVENT HANDLERS -# These options allow you to specify a host and service event handler -# command that is to be run for every host or service state change. -# The global event handler is executed immediately prior to the event -# handler that you have optionally specified in each host or -# service definition. The command argument is the short name of a -# command definition that you define in your host configuration file. -# Read the HTML docs for more information. - -#global_host_event_handler=somecommand -#global_service_event_handler=somecommand - - - -# SERVICE INTER-CHECK DELAY METHOD -# This is the method that Nagios should use when initially -# "spreading out" service checks when it starts monitoring. The -# default is to use smart delay calculation, which will try to -# space all service checks out evenly to minimize CPU load. -# Using the dumb setting will cause all checks to be scheduled -# at the same time (with no delay between them)! This is not a -# good thing for production, but is useful when testing the -# parallelization functionality. -# n = None - don't use any delay between checks -# d = Use a "dumb" delay of 1 second between checks -# s = Use "smart" inter-check delay calculation -# x.xx = Use an inter-check delay of x.xx seconds - -service_inter_check_delay_method=s - - - -# MAXIMUM SERVICE CHECK SPREAD -# This variable determines the timeframe (in minutes) from the -# program start time that an initial check of all services should -# be completed. Default is 30 minutes. - -max_service_check_spread=30 - - - -# SERVICE CHECK INTERLEAVE FACTOR -# This variable determines how service checks are interleaved. -# Interleaving the service checks allows for a more even -# distribution of service checks and reduced load on remote -# hosts. Setting this value to 1 is equivalent to how versions -# of Nagios previous to 0.0.5 did service checks. Set this -# value to s (smart) for automatic calculation of the interleave -# factor unless you have a specific reason to change it. -# s = Use "smart" interleave factor calculation -# x = Use an interleave factor of x, where x is a -# number greater than or equal to 1. - -service_interleave_factor=s - - - -# HOST INTER-CHECK DELAY METHOD -# This is the method that Nagios should use when initially -# "spreading out" host checks when it starts monitoring. The -# default is to use smart delay calculation, which will try to -# space all host checks out evenly to minimize CPU load. -# Using the dumb setting will cause all checks to be scheduled -# at the same time (with no delay between them)! -# n = None - don't use any delay between checks -# d = Use a "dumb" delay of 1 second between checks -# s = Use "smart" inter-check delay calculation -# x.xx = Use an inter-check delay of x.xx seconds - -host_inter_check_delay_method=s - - - -# MAXIMUM HOST CHECK SPREAD -# This variable determines the timeframe (in minutes) from the -# program start time that an initial check of all hosts should -# be completed. Default is 30 minutes. - -max_host_check_spread=30 - - - -# MAXIMUM CONCURRENT SERVICE CHECKS -# This option allows you to specify the maximum number of -# service checks that can be run in parallel at any given time. -# Specifying a value of 1 for this variable essentially prevents -# any service checks from being parallelized. A value of 0 -# will not restrict the number of concurrent checks that are -# being executed. - -max_concurrent_checks=0 - - - -# HOST AND SERVICE CHECK REAPER FREQUENCY -# This is the frequency (in seconds!) that Nagios will process -# the results of host and service checks. - -check_result_reaper_frequency=10 - - - - -# MAX CHECK RESULT REAPER TIME -# This is the max amount of time (in seconds) that a single -# check result reaper event will be allowed to run before -# returning control back to Nagios so it can perform other -# duties. - -max_check_result_reaper_time=30 - - - - -# CHECK RESULT PATH -# This is directory where Nagios stores the results of host and -# service checks that have not yet been processed. -# -# Note: Make sure that only one instance of Nagios has access -# to this directory! - -check_result_path=/var/spool/nagios/checkresults - - - - -# MAX CHECK RESULT FILE AGE -# This option determines the maximum age (in seconds) which check -# result files are considered to be valid. Files older than this -# threshold will be mercilessly deleted without further processing. - -max_check_result_file_age=3600 - - - - -# CACHED HOST CHECK HORIZON -# This option determines the maximum amount of time (in seconds) -# that the state of a previous host check is considered current. -# Cached host states (from host checks that were performed more -# recently that the timeframe specified by this value) can immensely -# improve performance in regards to the host check logic. -# Too high of a value for this option may result in inaccurate host -# states being used by Nagios, while a lower value may result in a -# performance hit for host checks. Use a value of 0 to disable host -# check caching. - -cached_host_check_horizon=15 - - - -# CACHED SERVICE CHECK HORIZON -# This option determines the maximum amount of time (in seconds) -# that the state of a previous service check is considered current. -# Cached service states (from service checks that were performed more -# recently that the timeframe specified by this value) can immensely -# improve performance in regards to predictive dependency checks. -# Use a value of 0 to disable service check caching. - -cached_service_check_horizon=15 - - - -# ENABLE PREDICTIVE HOST DEPENDENCY CHECKS -# This option determines whether or not Nagios will attempt to execute -# checks of hosts when it predicts that future dependency logic test -# may be needed. These predictive checks can help ensure that your -# host dependency logic works well. -# Values: -# 0 = Disable predictive checks -# 1 = Enable predictive checks (default) - -enable_predictive_host_dependency_checks=1 - - - -# ENABLE PREDICTIVE SERVICE DEPENDENCY CHECKS -# This option determines whether or not Nagios will attempt to execute -# checks of service when it predicts that future dependency logic test -# may be needed. These predictive checks can help ensure that your -# service dependency logic works well. -# Values: -# 0 = Disable predictive checks -# 1 = Enable predictive checks (default) - -enable_predictive_service_dependency_checks=1 - - - -# SOFT STATE DEPENDENCIES -# This option determines whether or not Nagios will use soft state -# information when checking host and service dependencies. Normally -# Nagios will only use the latest hard host or service state when -# checking dependencies. If you want it to use the latest state (regardless -# of whether its a soft or hard state type), enable this option. -# Values: -# 0 = Don't use soft state dependencies (default) -# 1 = Use soft state dependencies - -soft_state_dependencies=0 - - - -# TIME CHANGE ADJUSTMENT THRESHOLDS -# These options determine when Nagios will react to detected changes -# in system time (either forward or backwards). - -#time_change_threshold=900 - - - -# AUTO-RESCHEDULING OPTION -# This option determines whether or not Nagios will attempt to -# automatically reschedule active host and service checks to -# "smooth" them out over time. This can help balance the load on -# the monitoring server. -# WARNING: THIS IS AN EXPERIMENTAL FEATURE - IT CAN DEGRADE -# PERFORMANCE, RATHER THAN INCREASE IT, IF USED IMPROPERLY - -auto_reschedule_checks=0 - - - -# AUTO-RESCHEDULING INTERVAL -# This option determines how often (in seconds) Nagios will -# attempt to automatically reschedule checks. This option only -# has an effect if the auto_reschedule_checks option is enabled. -# Default is 30 seconds. -# WARNING: THIS IS AN EXPERIMENTAL FEATURE - IT CAN DEGRADE -# PERFORMANCE, RATHER THAN INCREASE IT, IF USED IMPROPERLY - -auto_rescheduling_interval=30 - - - -# AUTO-RESCHEDULING WINDOW -# This option determines the "window" of time (in seconds) that -# Nagios will look at when automatically rescheduling checks. -# Only host and service checks that occur in the next X seconds -# (determined by this variable) will be rescheduled. This option -# only has an effect if the auto_reschedule_checks option is -# enabled. Default is 180 seconds (3 minutes). -# WARNING: THIS IS AN EXPERIMENTAL FEATURE - IT CAN DEGRADE -# PERFORMANCE, RATHER THAN INCREASE IT, IF USED IMPROPERLY - -auto_rescheduling_window=180 - - - -# TIMEOUT VALUES -# These options control how much time Nagios will allow various -# types of commands to execute before killing them off. Options -# are available for controlling maximum time allotted for -# service checks, host checks, event handlers, notifications, the -# ocsp command, and performance data commands. All values are in -# seconds. - -service_check_timeout=60 -host_check_timeout=30 -event_handler_timeout=30 -notification_timeout=30 -ocsp_timeout=5 -perfdata_timeout=5 - - - -# RETAIN STATE INFORMATION -# This setting determines whether or not Nagios will save state -# information for services and hosts before it shuts down. Upon -# startup Nagios will reload all saved service and host state -# information before starting to monitor. This is useful for -# maintaining long-term data on state statistics, etc, but will -# slow Nagios down a bit when it (re)starts. Since its only -# a one-time penalty, I think its well worth the additional -# startup delay. - -retain_state_information=1 - - - -# STATE RETENTION FILE -# This is the file that Nagios should use to store host and -# service state information before it shuts down. The state -# information in this file is also read immediately prior to -# starting to monitor the network when Nagios is restarted. -# This file is used only if the retain_state_information -# variable is set to 1. - -state_retention_file=/var/spool/nagios/retention.dat - - - -# RETENTION DATA UPDATE INTERVAL -# This setting determines how often (in minutes) that Nagios -# will automatically save retention data during normal operation. -# If you set this value to 0, Nagios will not save retention -# data at regular interval, but it will still save retention -# data before shutting down or restarting. If you have disabled -# state retention, this option has no effect. - -retention_update_interval=60 - - - -# USE RETAINED PROGRAM STATE -# This setting determines whether or not Nagios will set -# program status variables based on the values saved in the -# retention file. If you want to use retained program status -# information, set this value to 1. If not, set this value -# to 0. - -use_retained_program_state=1 - - - -# USE RETAINED SCHEDULING INFO -# This setting determines whether or not Nagios will retain -# the scheduling info (next check time) for hosts and services -# based on the values saved in the retention file. If you -# If you want to use retained scheduling info, set this -# value to 1. If not, set this value to 0. - -use_retained_scheduling_info=1 - - - -# RETAINED ATTRIBUTE MASKS (ADVANCED FEATURE) -# The following variables are used to specify specific host and -# service attributes that should *not* be retained by Nagios during -# program restarts. -# -# The values of the masks are bitwise ANDs of values specified -# by the "MODATTR_" definitions found in include/common.h. -# For example, if you do not want the current enabled/disabled state -# of flap detection and event handlers for hosts to be retained, you -# would use a value of 24 for the host attribute mask... -# MODATTR_EVENT_HANDLER_ENABLED (8) + MODATTR_FLAP_DETECTION_ENABLED (16) = 24 - -# This mask determines what host attributes are not retained -retained_host_attribute_mask=0 - -# This mask determines what service attributes are not retained -retained_service_attribute_mask=0 - -# These two masks determine what process attributes are not retained. -# There are two masks, because some process attributes have host and service -# options. For example, you can disable active host checks, but leave active -# service checks enabled. -retained_process_host_attribute_mask=0 -retained_process_service_attribute_mask=0 - -# These two masks determine what contact attributes are not retained. -# There are two masks, because some contact attributes have host and -# service options. For example, you can disable host notifications for -# a contact, but leave service notifications enabled for them. -retained_contact_host_attribute_mask=0 -retained_contact_service_attribute_mask=0 - - - -# INTERVAL LENGTH -# This is the seconds per unit interval as used in the -# host/contact/service configuration files. Setting this to 60 means -# that each interval is one minute long (60 seconds). Other settings -# have not been tested much, so your mileage is likely to vary... - -interval_length=60 - - - -# CHECK FOR UPDATES -# This option determines whether Nagios will automatically check to -# see if new updates (releases) are available. It is recommend that you -# enable this option to ensure that you stay on top of the latest critical -# patches to Nagios. Nagios is critical to you - make sure you keep it in -# good shape. Nagios will check once a day for new updates. Data collected -# by Nagios Enterprises from the update check is processed in accordance -# with our privacy policy - see https://api.nagios.org for details. - -check_for_updates=1 - - - -# BARE UPDATE CHECK -# This option deterines what data Nagios will send to api.nagios.org when -# it checks for updates. By default, Nagios will send information on the -# current version of Nagios you have installed, as well as an indicator as -# to whether this was a new installation or not. Nagios Enterprises uses -# this data to determine the number of users running specific version of -# Nagios. Enable this option if you do not want this information to be sent. - -bare_update_check=0 - - - -# AGGRESSIVE HOST CHECKING OPTION -# If you don't want to turn on aggressive host checking features, set -# this value to 0 (the default). Otherwise set this value to 1 to -# enable the aggressive check option. Read the docs for more info -# on what aggressive host check is or check out the source code in -# base/checks.c - -use_aggressive_host_checking=0 - - - -# SERVICE CHECK EXECUTION OPTION -# This determines whether or not Nagios will actively execute -# service checks when it initially starts. If this option is -# disabled, checks are not actively made, but Nagios can still -# receive and process passive check results that come in. Unless -# you're implementing redundant hosts or have a special need for -# disabling the execution of service checks, leave this enabled! -# Values: 1 = enable checks, 0 = disable checks - -execute_service_checks=1 - - - -# PASSIVE SERVICE CHECK ACCEPTANCE OPTION -# This determines whether or not Nagios will accept passive -# service checks results when it initially (re)starts. -# Values: 1 = accept passive checks, 0 = reject passive checks - -accept_passive_service_checks=1 - - - -# HOST CHECK EXECUTION OPTION -# This determines whether or not Nagios will actively execute -# host checks when it initially starts. If this option is -# disabled, checks are not actively made, but Nagios can still -# receive and process passive check results that come in. Unless -# you're implementing redundant hosts or have a special need for -# disabling the execution of host checks, leave this enabled! -# Values: 1 = enable checks, 0 = disable checks - -execute_host_checks=1 - - - -# PASSIVE HOST CHECK ACCEPTANCE OPTION -# This determines whether or not Nagios will accept passive -# host checks results when it initially (re)starts. -# Values: 1 = accept passive checks, 0 = reject passive checks - -accept_passive_host_checks=1 - - - -# NOTIFICATIONS OPTION -# This determines whether or not Nagios will sent out any host or -# service notifications when it is initially (re)started. -# Values: 1 = enable notifications, 0 = disable notifications - -enable_notifications=1 - - - -# EVENT HANDLER USE OPTION -# This determines whether or not Nagios will run any host or -# service event handlers when it is initially (re)started. Unless -# you're implementing redundant hosts, leave this option enabled. -# Values: 1 = enable event handlers, 0 = disable event handlers - -enable_event_handlers=1 - - - -# PROCESS PERFORMANCE DATA OPTION -# This determines whether or not Nagios will process performance -# data returned from service and host checks. If this option is -# enabled, host performance data will be processed using the -# host_perfdata_command (defined below) and service performance -# data will be processed using the service_perfdata_command (also -# defined below). Read the HTML docs for more information on -# performance data. -# Values: 1 = process performance data, 0 = do not process performance data - -process_performance_data=0 - - - -# HOST AND SERVICE PERFORMANCE DATA PROCESSING COMMANDS -# These commands are run after every host and service check is -# performed. These commands are executed only if the -# enable_performance_data option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on performance data. - -#host_perfdata_command=process-host-perfdata -#service_perfdata_command=process-service-perfdata - - - -# HOST AND SERVICE PERFORMANCE DATA FILES -# These files are used to store host and service performance data. -# Performance data is only written to these files if the -# enable_performance_data option (above) is set to 1. - -#host_perfdata_file=/var/spool/nagios/host-perfdata -#service_perfdata_file=/var/spool/nagios/service-perfdata - - - -# HOST AND SERVICE PERFORMANCE DATA FILE TEMPLATES -# These options determine what data is written (and how) to the -# performance data files. The templates may contain macros, special -# characters (\t for tab, \r for carriage return, \n for newline) -# and plain text. A newline is automatically added after each write -# to the performance data file. Some examples of what you can do are -# shown below. - -#host_perfdata_file_template=[HOSTPERFDATA]\t$TIMET$\t$HOSTNAME$\t$HOSTEXECUTIONTIME$\t$HOSTOUTPUT$\t$HOSTPERFDATA$ -#service_perfdata_file_template=[SERVICEPERFDATA]\t$TIMET$\t$HOSTNAME$\t$SERVICEDESC$\t$SERVICEEXECUTIONTIME$\t$SERVICELATENCY$\t$SERVICEOUTPUT$\t$SERVICEPERFDATA$ - - - -# HOST AND SERVICE PERFORMANCE DATA FILE MODES -# This option determines whether or not the host and service -# performance data files are opened in write ("w") or append ("a") -# mode. If you want to use named pipes, you should use the special -# pipe ("p") mode which avoid blocking at startup, otherwise you will -# likely want the defult append ("a") mode. - -#host_perfdata_file_mode=a -#service_perfdata_file_mode=a - - - -# HOST AND SERVICE PERFORMANCE DATA FILE PROCESSING INTERVAL -# These options determine how often (in seconds) the host and service -# performance data files are processed using the commands defined -# below. A value of 0 indicates the files should not be periodically -# processed. - -#host_perfdata_file_processing_interval=0 -#service_perfdata_file_processing_interval=0 - - - -# HOST AND SERVICE PERFORMANCE DATA FILE PROCESSING COMMANDS -# These commands are used to periodically process the host and -# service performance data files. The interval at which the -# processing occurs is determined by the options above. - -#host_perfdata_file_processing_command=process-host-perfdata-file -#service_perfdata_file_processing_command=process-service-perfdata-file - - - -# HOST AND SERVICE PERFORMANCE DATA PROCESS EMPTY RESULTS -# These options determine wether the core will process empty perfdata -# results or not. This is needed for distributed monitoring, and intentionally -# turned on by default. -# If you don't require empty perfdata - saving some cpu cycles -# on unwanted macro calculation - you can turn that off. Be careful! -# Values: 1 = enable, 0 = disable - -#host_perfdata_process_empty_results=1 -#service_perfdata_process_empty_results=1 - - -# OBSESS OVER SERVICE CHECKS OPTION -# This determines whether or not Nagios will obsess over service -# checks and run the ocsp_command defined below. Unless you're -# planning on implementing distributed monitoring, do not enable -# this option. Read the HTML docs for more information on -# implementing distributed monitoring. -# Values: 1 = obsess over services, 0 = do not obsess (default) - -obsess_over_services=0 - - - -# OBSESSIVE COMPULSIVE SERVICE PROCESSOR COMMAND -# This is the command that is run for every service check that is -# processed by Nagios. This command is executed only if the -# obsess_over_services option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on implementing distributed monitoring. - -#ocsp_command=somecommand - - - -# OBSESS OVER HOST CHECKS OPTION -# This determines whether or not Nagios will obsess over host -# checks and run the ochp_command defined below. Unless you're -# planning on implementing distributed monitoring, do not enable -# this option. Read the HTML docs for more information on -# implementing distributed monitoring. -# Values: 1 = obsess over hosts, 0 = do not obsess (default) - -obsess_over_hosts=0 - - - -# OBSESSIVE COMPULSIVE HOST PROCESSOR COMMAND -# This is the command that is run for every host check that is -# processed by Nagios. This command is executed only if the -# obsess_over_hosts option (above) is set to 1. The command -# argument is the short name of a command definition that you -# define in your host configuration file. Read the HTML docs for -# more information on implementing distributed monitoring. - -#ochp_command=somecommand - - - -# TRANSLATE PASSIVE HOST CHECKS OPTION -# This determines whether or not Nagios will translate -# DOWN/UNREACHABLE passive host check results into their proper -# state for this instance of Nagios. This option is useful -# if you have distributed or failover monitoring setup. In -# these cases your other Nagios servers probably have a different -# "view" of the network, with regards to the parent/child relationship -# of hosts. If a distributed monitoring server thinks a host -# is DOWN, it may actually be UNREACHABLE from the point of -# this Nagios instance. Enabling this option will tell Nagios -# to translate any DOWN or UNREACHABLE host states it receives -# passively into the correct state from the view of this server. -# Values: 1 = perform translation, 0 = do not translate (default) - -translate_passive_host_checks=0 - - - -# PASSIVE HOST CHECKS ARE SOFT OPTION -# This determines whether or not Nagios will treat passive host -# checks as being HARD or SOFT. By default, a passive host check -# result will put a host into a HARD state type. This can be changed -# by enabling this option. -# Values: 0 = passive checks are HARD, 1 = passive checks are SOFT - -passive_host_checks_are_soft=0 - - - -# ORPHANED HOST/SERVICE CHECK OPTIONS -# These options determine whether or not Nagios will periodically -# check for orphaned host service checks. Since service checks are -# not rescheduled until the results of their previous execution -# instance are processed, there exists a possibility that some -# checks may never get rescheduled. A similar situation exists for -# host checks, although the exact scheduling details differ a bit -# from service checks. Orphaned checks seem to be a rare -# problem and should not happen under normal circumstances. -# If you have problems with service checks never getting -# rescheduled, make sure you have orphaned service checks enabled. -# Values: 1 = enable checks, 0 = disable checks - -check_for_orphaned_services=1 -check_for_orphaned_hosts=1 - - - -# SERVICE FRESHNESS CHECK OPTION -# This option determines whether or not Nagios will periodically -# check the "freshness" of service results. Enabling this option -# is useful for ensuring passive checks are received in a timely -# manner. -# Values: 1 = enabled freshness checking, 0 = disable freshness checking - -check_service_freshness=1 - - - -# SERVICE FRESHNESS CHECK INTERVAL -# This setting determines how often (in seconds) Nagios will -# check the "freshness" of service check results. If you have -# disabled service freshness checking, this option has no effect. - -service_freshness_check_interval=60 - - - -# SERVICE CHECK TIMEOUT STATE -# This setting determines the state Nagios will report when a -# service check times out - that is does not respond within -# service_check_timeout seconds. This can be useful if a -# machine is running at too high a load and you do not want -# to consider a failed service check to be critical (the default). -# Valid settings are: -# c - Critical (default) -# u - Unknown -# w - Warning -# o - OK - -service_check_timeout_state=c - - - -# HOST FRESHNESS CHECK OPTION -# This option determines whether or not Nagios will periodically -# check the "freshness" of host results. Enabling this option -# is useful for ensuring passive checks are received in a timely -# manner. -# Values: 1 = enabled freshness checking, 0 = disable freshness checking - -check_host_freshness=0 - - - -# HOST FRESHNESS CHECK INTERVAL -# This setting determines how often (in seconds) Nagios will -# check the "freshness" of host check results. If you have -# disabled host freshness checking, this option has no effect. - -host_freshness_check_interval=60 - - - - -# ADDITIONAL FRESHNESS THRESHOLD LATENCY -# This setting determines the number of seconds that Nagios -# will add to any host and service freshness thresholds that -# it calculates (those not explicitly specified by the user). - -additional_freshness_latency=15 - - - - -# FLAP DETECTION OPTION -# This option determines whether or not Nagios will try -# and detect hosts and services that are "flapping". -# Flapping occurs when a host or service changes between -# states too frequently. When Nagios detects that a -# host or service is flapping, it will temporarily suppress -# notifications for that host/service until it stops -# flapping. Flap detection is very experimental, so read -# the HTML documentation before enabling this feature! -# Values: 1 = enable flap detection -# 0 = disable flap detection (default) - -enable_flap_detection=1 - - - -# FLAP DETECTION THRESHOLDS FOR HOSTS AND SERVICES -# Read the HTML documentation on flap detection for -# an explanation of what this option does. This option -# has no effect if flap detection is disabled. - -low_service_flap_threshold=5.0 -high_service_flap_threshold=20.0 -low_host_flap_threshold=5.0 -high_host_flap_threshold=20.0 - - - -# DATE FORMAT OPTION -# This option determines how short dates are displayed. Valid options -# include: -# us (MM-DD-YYYY HH:MM:SS) -# euro (DD-MM-YYYY HH:MM:SS) -# iso8601 (YYYY-MM-DD HH:MM:SS) -# strict-iso8601 (YYYY-MM-DDTHH:MM:SS) -# - -date_format=us - - - - -# TIMEZONE OFFSET -# This option is used to override the default timezone that this -# instance of Nagios runs in. If not specified, Nagios will use -# the system configured timezone. -# -# NOTE: In order to display the correct timezone in the CGIs, you -# will also need to alter the Apache directives for the CGI path -# to include your timezone. Example: -# -# -# SetEnv TZ "Australia/Brisbane" -# ... -# - -#use_timezone=US/Mountain -#use_timezone=Australia/Brisbane - - - -# ILLEGAL OBJECT NAME CHARACTERS -# This option allows you to specify illegal characters that cannot -# be used in host names, service descriptions, or names of other -# object types. - -illegal_object_name_chars=`~!$%^&*|'"<>?,()= - - - -# ILLEGAL MACRO OUTPUT CHARACTERS -# This option allows you to specify illegal characters that are -# stripped from macros before being used in notifications, event -# handlers, etc. This DOES NOT affect macros used in service or -# host check commands. -# The following macros are stripped of the characters you specify: -# $HOSTOUTPUT$ -# $LONGHOSTOUTPUT$ -# $HOSTPERFDATA$ -# $HOSTACKAUTHOR$ -# $HOSTACKCOMMENT$ -# $SERVICEOUTPUT$ -# $LONGSERVICEOUTPUT$ -# $SERVICEPERFDATA$ -# $SERVICEACKAUTHOR$ -# $SERVICEACKCOMMENT$ - -illegal_macro_output_chars=`~$&|'"<> - - - -# REGULAR EXPRESSION MATCHING -# This option controls whether or not regular expression matching -# takes place in the object config files. Regular expression -# matching is used to match host, hostgroup, service, and service -# group names/descriptions in some fields of various object types. -# Values: 1 = enable regexp matching, 0 = disable regexp matching - -use_regexp_matching=0 - - - -# "TRUE" REGULAR EXPRESSION MATCHING -# This option controls whether or not "true" regular expression -# matching takes place in the object config files. This option -# only has an effect if regular expression matching is enabled -# (see above). If this option is DISABLED, regular expression -# matching only occurs if a string contains wildcard characters -# (* and ?). If the option is ENABLED, regexp matching occurs -# all the time (which can be annoying). -# Values: 1 = enable true matching, 0 = disable true matching - -use_true_regexp_matching=0 - - - -# ADMINISTRATOR EMAIL/PAGER ADDRESSES -# The email and pager address of a global administrator (likely you). -# Nagios never uses these values itself, but you can access them by -# using the $ADMINEMAIL$ and $ADMINPAGER$ macros in your notification -# commands. - -admin_email=nagios@localhost -admin_pager=pagenagios@localhost - - - -# DAEMON CORE DUMP OPTION -# This option determines whether or not Nagios is allowed to create -# a core dump when it runs as a daemon. Note that it is generally -# considered bad form to allow this, but it may be useful for -# debugging purposes. Enabling this option doesn't guarantee that -# a core file will be produced, but that's just life... -# Values: 1 - Allow core dumps -# 0 - Do not allow core dumps (default) - -daemon_dumps_core=0 - - - -# LARGE INSTALLATION TWEAKS OPTION -# This option determines whether or not Nagios will take some shortcuts -# which can save on memory and CPU usage in large Nagios installations. -# Read the documentation for more information on the benefits/tradeoffs -# of enabling this option. -# Values: 1 - Enabled tweaks -# 0 - Disable tweaks (default) - -use_large_installation_tweaks=0 - - - -# ENABLE ENVIRONMENT MACROS -# This option determines whether or not Nagios will make all standard -# macros available as environment variables when host/service checks -# and system commands (event handlers, notifications, etc.) are -# executed. -# Enabling this is a very bad idea for anything but very small setups, -# as it means plugins, notification scripts and eventhandlers may run -# out of environment space. It will also cause a significant increase -# in CPU- and memory usage and drastically reduce the number of checks -# you can run. -# Values: 1 - Enable environment variable macros -# 0 - Disable environment variable macros (default) - -enable_environment_macros=0 - - - -# CHILD PROCESS MEMORY OPTION -# This option determines whether or not Nagios will free memory in -# child processes (processed used to execute system commands and host/ -# service checks). If you specify a value here, it will override -# program defaults. -# Value: 1 - Free memory in child processes -# 0 - Do not free memory in child processes - -#free_child_process_memory=1 - - - -# CHILD PROCESS FORKING BEHAVIOR -# This option determines how Nagios will fork child processes -# (used to execute system commands and host/service checks). Normally -# child processes are fork()ed twice, which provides a very high level -# of isolation from problems. Fork()ing once is probably enough and will -# save a great deal on CPU usage (in large installs), so you might -# want to consider using this. If you specify a value here, it will -# program defaults. -# Value: 1 - Child processes fork() twice -# 0 - Child processes fork() just once - -#child_processes_fork_twice=1 - - - -# DEBUG LEVEL -# This option determines how much (if any) debugging information will -# be written to the debug file. OR values together to log multiple -# types of information. -# Values: -# -1 = Everything -# 0 = Nothing -# 1 = Functions -# 2 = Configuration -# 4 = Process information -# 8 = Scheduled events -# 16 = Host/service checks -# 32 = Notifications -# 64 = Event broker -# 128 = External commands -# 256 = Commands -# 512 = Scheduled downtime -# 1024 = Comments -# 2048 = Macros - -debug_level=0 - - - -# DEBUG VERBOSITY -# This option determines how verbose the debug log out will be. -# Values: 0 = Brief output -# 1 = More detailed -# 2 = Very detailed - -debug_verbosity=1 - - - -# DEBUG FILE -# This option determines where Nagios should write debugging information. - -debug_file=/var/spool/nagios/nagios.debug - - - -# MAX DEBUG FILE SIZE -# This option determines the maximum size (in bytes) of the debug file. If -# the file grows larger than this size, it will be renamed with a .old -# extension. If a file already exists with a .old extension it will -# automatically be deleted. This helps ensure your disk space usage doesn't -# get out of control when debugging Nagios. - -max_debug_file_size=1000000 - - - -# Should we allow hostgroups to have no hosts, we default this to off since -# that was the old behavior - -allow_empty_hostgroup_assignment=0 - - - -# Normally worker count is dynamically allocated based on 1.5 * number of cpu's -# with a minimum of 4 workers. This value will override the defaults - -#check_workers=3 - - - -# DISABLE SERVICE CHECKS WHEN HOST DOWN -# This option will disable all service checks if the host is not in an UP state -# -# While desirable in some environments, enabling this value can distort report -# values as the expected quantity of checks will not have been performed - -#host_down_disable_service_checks=0 - - - -# EXPERIMENTAL load controlling options -# To get current defaults based on your system issue a command to -# the query handler. Please note that this is an experimental feature -# and not meant for production use. Used incorrectly it can induce -# enormous latency. -# #core loadctl -# jobs_max - The maximum amount of jobs to run at one time -# jobs_min - The minimum amount of jobs to run at one time -# jobs_limit - The maximum amount of jobs the current load lets us run -# backoff_limit - The minimum backoff_change -# backoff_change - # of jobs to remove from jobs_limit when backing off -# rampup_limit - Minimum rampup_change -# rampup_change - # of jobs to add to jobs_limit when ramping up -# NOTE: The backoff_limit and rampup_limit are NOT used by anything currently, -# so if your system is under load nothing will actively modify the jobs -# even if you have these options enabled, they are for external -# connector information only. However, if you change the jobs_max or -# jobs_min manually here or through the query handler interface that -# WILL affect your system -#loadctl_options=jobs_max=100;backoff_limit=10;rampup_change=5 diff --git a/roles/nagios/server/files/nagios/private/resource.cfg b/roles/nagios/server/files/nagios/private/resource.cfg deleted file mode 100644 index 88fe4cf852..0000000000 --- a/roles/nagios/server/files/nagios/private/resource.cfg +++ /dev/null @@ -1,33 +0,0 @@ -########################################################################### -# -# RESOURCE.CFG - Sample Resource File for Nagios -# -# Last Modified: 09-10-2003 -# -# You can define $USERx$ macros in this file, which can in turn be used -# in command definitions in your host config file(s). $USERx$ macros are -# useful for storing sensitive information such as usernames, passwords, -# etc. They are also handy for specifying the path to plugins and -# event handlers - if you decide to move the plugins or event handlers to -# a different directory in the future, you can just update one or two -# $USERx$ macros, instead of modifying a lot of command definitions. -# -# The CGIs will not attempt to read the contents of resource files, so -# you can set restrictive permissions (600 or 660) on them. -# -# Nagios supports up to 32 $USERx$ macros ($USER1$ through $USER32$) -# -# Resource files may also be used to store configuration directives for -# external data sources like MySQL... -# -########################################################################### - -# Sets $USER1$ to be the path to the plugins -$USER1$=/usr/lib64/nagios/plugins - -# Sets $USER2$ to be the path to event handlers -#$USER2$=/usr/lib/nagios/plugins/eventhandlers - -# Store some usernames and passwords (hidden from the CGIs) -#$USER3$=someuser -#$USER4$=somepassword diff --git a/roles/nagios/server/files/nagios/private/resource.cfg-sample b/roles/nagios/server/files/nagios/private/resource.cfg-sample deleted file mode 100644 index 167efeffbc..0000000000 --- a/roles/nagios/server/files/nagios/private/resource.cfg-sample +++ /dev/null @@ -1,34 +0,0 @@ -########################################################################### -# -# RESOURCE.CFG - Sample Resource File for Nagios 2.7 -# -# Last Modified: 09-10-2003 -# -# You can define $USERx$ macros in this file, which can in turn be used -# in command definitions in your host config file(s). $USERx$ macros are -# useful for storing sensitive information such as usernames, passwords, -# etc. They are also handy for specifying the path to plugins and -# event handlers - if you decide to move the plugins or event handlers to -# a different directory in the future, you can just update one or two -# $USERx$ macros, instead of modifying a lot of command definitions. -# -# The CGIs will not attempt to read the contents of resource files, so -# you can set restrictive permissions (600 or 660) on them. -# -# Nagios supports up to 32 $USERx$ macros ($USER1$ through $USER32$) -# -# Resource files may also be used to store configuration directives for -# external data sources like MySQL... -# -########################################################################### - -# Sets $USER1$ to be the path to the plugins -$USER1$=/usr/lib64/nagios/plugins - -# Sets $USER2$ to be the path to event handlers -#$USER2$=/usr/lib/nagios/plugins/eventhandlers - -# Store some usernames and passwords (hidden from the CGIs) -#$USER3$=someuser -#$USER4$=somepassword - diff --git a/roles/nagios/server/files/nagios/send_nsca.cfg b/roles/nagios/server/files/nagios/send_nsca.cfg deleted file mode 100644 index 30966d38ca..0000000000 --- a/roles/nagios/server/files/nagios/send_nsca.cfg +++ /dev/null @@ -1,63 +0,0 @@ -#################################################### -# Sample NSCA Client Config File -# Written by: Ethan Galstad (nagios@nagios.org) -# -# Last Modified: 02-21-2002 -#################################################### - - -# ENCRYPTION PASSWORD -# This is the password/passphrase that should be used to encrypt the -# outgoing packets. Note that the nsca daemon must use the same -# password when decrypting the packet! -# IMPORTANT: You don't want all the users on this system to be able -# to read the password you specify here, so make sure to set -# restrictive permissions on this config file! - -password=oix9iadeeh4kaeviha4naiReGhahze - - - -# ENCRYPTION METHOD -# This option determines the method by which the send_nsca client will -# encrypt the packets it sends to the nsca daemon. The encryption -# method you choose will be a balance between security and performance, -# as strong encryption methods consume more processor resources. -# You should evaluate your security needs when choosing an encryption -# method. -# -# Note: The encryption method you specify here must match the -# decryption method the nsca daemon uses (as specified in -# the nsca.cfg file)!! -# Values: -# 0 = None (Do NOT use this option) -# 1 = Simple XOR (No security, just obfuscation, but very fast) -# -# 2 = DES -# 3 = 3DES (Triple DES) -# 4 = CAST-128 -# 5 = CAST-256 -# 6 = xTEA -# 7 = 3WAY -# 8 = BLOWFISH -# 9 = TWOFISH -# 10 = LOKI97 -# 11 = RC2 -# 12 = ARCFOUR -# -# 14 = RIJNDAEL-128 -# 15 = RIJNDAEL-192 -# 16 = RIJNDAEL-256 -# -# 19 = WAKE -# 20 = SERPENT -# -# 22 = ENIGMA (Unix crypt) -# 23 = GOST -# 24 = SAFER64 -# 25 = SAFER128 -# 26 = SAFER+ -# - -encryption_method=1 - diff --git a/roles/nagios/server/files/nagios/servicedeps/nrpe.cfg b/roles/nagios/server/files/nagios/servicedeps/nrpe.cfg deleted file mode 100644 index 1c5269db18..0000000000 --- a/roles/nagios/server/files/nagios/servicedeps/nrpe.cfg +++ /dev/null @@ -1,152 +0,0 @@ -#define servicedependency { -# host_name hosted03 -# service_description nrpe -# dependent_host_name hosted03 -# dependent_service_description Disk Space /srv, Disk Space /, Total Processes, Zombie Processes, Cron Daemon, Check Raid, Swap -# notification_failure_criteria w,c -# execution_failure_criteria w,c -#} - -#define servicedependency { -# host_name hosted04 -# service_description nrpe -# dependent_host_name hosted04 -# dependent_service_description Disk Space /srv, Disk Space /, Total Processes, Zombie Processes, Cron Daemon, Check Raid, Swap -# notification_failure_criteria w,c -# execution_failure_criteria w,c -#} - -define servicedependency { - host_name pkgdb01 - service_description nrpe - dependent_host_name pkgdb01 - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name pkgdb02 - service_description nrpe - dependent_host_name pkgdb02 - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name pkgdb01.stg - service_description nrpe - dependent_host_name pkgdb01.stg - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -#define servicedependency { -# host_name bapp02 -# service_description nrpe -# dependent_host_name bapp02 -# dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes -# notification_failure_criteria w,c -# execution_failure_criteria w,c -#} - -define servicedependency { - host_name bastion02 - service_description nrpe - dependent_host_name bastion02 - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name bastion-vpn - service_description nrpe - dependent_host_name bastion-vpn - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -#define servicedependency { -# host_name bodhost01 -# service_description nrpe -# dependent_host_name bodhost01 -# dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes -# notification_failure_criteria w,c -# execution_failure_criteria w,c -#} - -define servicedependency { - host_name sundries01 - service_description nrpe - dependent_host_name sundries01 - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name sundries01.stg - service_description nrpe - dependent_host_name sundries01.stg - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name sundries02 - service_description nrpe - dependent_host_name sundries02 - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name wiki01 - service_description nrpe - dependent_host_name wiki01 - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name wiki01.stg - service_description nrpe - dependent_host_name wiki01.stg - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name wiki02 - service_description nrpe - dependent_host_name wiki02 - dependent_service_description Check Raid, Cron Daemon, Disk Space /, Swap, Total Processes, Zombie Processes - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name packages03 - service_description packages-internal - dependent_host_name packages03 - dependent_service_description packages-internal-bugstab - notification_failure_criteria w,c - execution_failure_criteria w,c -} - -define servicedependency { - host_name packages04 - service_description packages-internal - dependent_host_name packages04 - dependent_service_description packages-internal-bugstab - notification_failure_criteria w,c - execution_failure_criteria w,c -} diff --git a/roles/nagios/server/files/nagios/servicegroups/autoqa.cfg b/roles/nagios/server/files/nagios/servicegroups/autoqa.cfg deleted file mode 100644 index 5bf6bde22b..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/autoqa.cfg +++ /dev/null @@ -1,5 +0,0 @@ -#define servicegroup { -# servicegroup_name autoqa -# alias AutoQA Hosts -# members autoqa01,autoqa01-autotest-frontend -#} diff --git a/roles/nagios/server/files/nagios/servicegroups/bodhi.cfg b/roles/nagios/server/files/nagios/servicegroups/bodhi.cfg deleted file mode 100644 index 46dbcba899..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/bodhi.cfg +++ /dev/null @@ -1,7 +0,0 @@ -define servicegroup { - servicegroup_name bodhi - alias Bodhi - members proxy01,bodhi,proxy02,bodhi,proxy03,bodhi,proxy04,bodhi,proxy06,bodhi,proxy08,bodhi,proxy09,bodhi,proxy05,bodhi,proxy10,bodhi,proxy11,bodhi,proxy12,bodhi,bodhi03,bodhi-internal,bodhi04,bodhi-internal - -} - diff --git a/roles/nagios/server/files/nagios/servicegroups/fas.cfg b/roles/nagios/server/files/nagios/servicegroups/fas.cfg deleted file mode 100644 index d7cec01444..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/fas.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define servicegroup { - servicegroup_name fas - alias Fedora Account System - members proxy01,accounts,proxy02,accounts,proxy03,accounts,proxy04,accounts,proxy08,accounts,proxy12,accounts,fas01,accounts,fas02,accounts,fas03,accounts,db-fas01,Check FAS DB,proxy05,accounts,proxy10,accounts,proxy11,accounts,proxy12,accounts,proxy06,accounts -} diff --git a/roles/nagios/server/files/nagios/servicegroups/fedorahosted.org.cfg b/roles/nagios/server/files/nagios/servicegroups/fedorahosted.org.cfg deleted file mode 100644 index 8a55dc89c7..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/fedorahosted.org.cfg +++ /dev/null @@ -1,5 +0,0 @@ -#define servicegroup { -# servicegroup_name fedorahosted -# alias Fedora Hosted -# members hosted03,BZR,hosted03,GIT,hosted03,bzr.fedorahosted.org,hosted03,fedorahosted.org,hosted03,git.fedorahosted.org,hosted03,hg.fedorahosted.org,hosted03,svn.fedorahosted.org -#} diff --git a/roles/nagios/server/files/nagios/servicegroups/fp-wiki.cfg b/roles/nagios/server/files/nagios/servicegroups/fp-wiki.cfg deleted file mode 100644 index 8a57d1d73c..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/fp-wiki.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define servicegroup { - servicegroup_name fp-wiki - alias Fedora Project Wiki - members proxy01,fedoraproject.org - wiki - non-cached,proxy02,fedoraproject.org - wiki - non-cached,proxy03,fedoraproject.org - wiki - non-cached,proxy04,fedoraproject.org - wiki - non-cached,proxy06,fedoraproject.org - wiki - non-cached,proxy08,fedoraproject.org - wiki - non-cached,proxy09,fedoraproject.org - wiki - non-cached,proxy01,fedoraproject.org - wiki,proxy02,fedoraproject.org - wiki,proxy03,fedoraproject.org - wiki,proxy04,fedoraproject.org - wiki,proxy06,fedoraproject.org - wiki,proxy08,fedoraproject.org - wiki,proxy09,fedoraproject.org - wiki,proxy05,fedoraproject.org - wiki,proxy10,fedoraproject.org - wiki,proxy11,fedoraproject.org - wiki,proxy12,fedoraproject.org - wiki -} - diff --git a/roles/nagios/server/files/nagios/servicegroups/freemedia.cfg b/roles/nagios/server/files/nagios/servicegroups/freemedia.cfg deleted file mode 100644 index e88f0b3e1e..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/freemedia.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define servicegroup { - servicegroup_name freemedia - alias FreeMedia - members sundries01,freemedia-internal,sundries02,freemedia-internal -} - diff --git a/roles/nagios/server/files/nagios/servicegroups/ipa.cfg b/roles/nagios/server/files/nagios/servicegroups/ipa.cfg deleted file mode 100644 index 6075220e28..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/ipa.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define servicegroup { - servicegroup_name ipa - alias IPA Servers - members ipa01,IPA Replication Status,ipa02,IPA Replication Status -} diff --git a/roles/nagios/server/files/nagios/servicegroups/mgmt-http.cfg b/roles/nagios/server/files/nagios/servicegroups/mgmt-http.cfg deleted file mode 100644 index 759caa29f8..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/mgmt-http.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define servicegroup { - servicegroup_name mgmt-http - alias mgmt interfaces on http - members backup01.mgmt.fedoraproject.org,backup01.mgmt.fedoraproject.org-http,bvirthost01.mgmt.fedoraproject.org,bvirthost01.mgmt.fedoraproject.org-http,download01.mgmt.fedoraproject.org,download01.mgmt.fedoraproject.org-http,download02.mgmt.fedoraproject.org,download02.mgmt.fedoraproject.org-http,download03.mgmt.fedoraproject.org,download03.mgmt.fedoraproject.org-http,download04.mgmt.fedoraproject.org,download04.mgmt.fedoraproject.org-http,download05.mgmt.fedoraproject.org,download05.mgmt.fedoraproject.org-http,qa01.mgmt.fedoraproject.org,qa01.mgmt.fedoraproject.org-http,qa02.mgmt.fedoraproject.org,qa02.mgmt.fedoraproject.org-http,qa03.mgmt.fedoraproject.org,qa03.mgmt.fedoraproject.org-http,qa04.mgmt.fedoraproject.org,qa04.mgmt.fedoraproject.org-http,qa05.mgmt.fedoraproject.org,qa05.mgmt.fedoraproject.org-http,qa07.mgmt.fedoraproject.org,qa07.mgmt.fedoraproject.org-http,qa08.mgmt.fedoraproject.org,qa08.mgmt.fedoraproject.org-http,qa09.mgmt.fedoraproject.org,qa09.mgmt.fedoraproject.org-http,qa10.mgmt.fedoraproject.org,qa10.mgmt.fedoraproject.org-http,qa11.mgmt.fedoraproject.org,qa11.mgmt.fedoraproject.org-http,qa12.mgmt.fedoraproject.org,qa12.mgmt.fedoraproject.org-http,qa13.mgmt.fedoraproject.org,qa13.mgmt.fedoraproject.org-http,qa14.mgmt.fedoraproject.org,qa14.mgmt.fedoraproject.org-http,virthost01.mgmt.fedoraproject.org,virthost01.mgmt.fedoraproject.org-http,virthost03.mgmt.fedoraproject.org,virthost03.mgmt.fedoraproject.org-http,virthost12.mgmt.fedoraproject.org,virthost12.mgmt.fedoraproject.org-http,virthost15.mgmt.fedoraproject.org,virthost15.mgmt.fedoraproject.org-http,virthost16.mgmt.fedoraproject.org,virthost16.mgmt.fedoraproject.org-http,virthost17.mgmt.fedoraproject.org,virthost17.mgmt.fedoraproject.org-http,virthost18.mgmt.fedoraproject.org,virthost18.mgmt.fedoraproject.org-http,virthost-comm02.mgmt.fedoraproject.org,virthost-comm02.mgmt.fedoraproject.org-http, virthost-comm03.mgmt.fedoraproject.org,virthost-comm03.mgmt.fedoraproject.org-http, virthost-comm04.mgmt.fedoraproject.org,virthost-comm04.mgmt.fedoraproject.org-http,virthost02.mgmt.fedoraproject.org,virthost02.mgmt.fedoraproject.org-http,virthost11.mgmt.fedoraproject.org,virthost11.mgmt.fedoraproject.org-http -} diff --git a/roles/nagios/server/files/nagios/servicegroups/mgmt-https.cfg b/roles/nagios/server/files/nagios/servicegroups/mgmt-https.cfg deleted file mode 100644 index 4f395fbbc1..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/mgmt-https.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define servicegroup { - servicegroup_name mgmt-https - alias mgmt interfaces on https - members backup01.mgmt.fedoraproject.org,backup01.mgmt.fedoraproject.org-https,bvirthost01.mgmt.fedoraproject.org,bvirthost01.mgmt.fedoraproject.org-https,download01.mgmt.fedoraproject.org,download01.mgmt.fedoraproject.org-https,download02.mgmt.fedoraproject.org,download02.mgmt.fedoraproject.org-https,download03.mgmt.fedoraproject.org,download03.mgmt.fedoraproject.org-https,download04.mgmt.fedoraproject.org,download04.mgmt.fedoraproject.org-https,download05.mgmt.fedoraproject.org,download05.mgmt.fedoraproject.org-https,qa01.mgmt.fedoraproject.org,qa01.mgmt.fedoraproject.org-https,qa02.mgmt.fedoraproject.org,qa02.mgmt.fedoraproject.org-https,qa03.mgmt.fedoraproject.org,qa03.mgmt.fedoraproject.org-https,qa04.mgmt.fedoraproject.org,qa04.mgmt.fedoraproject.org-https,qa05.mgmt.fedoraproject.org,qa05.mgmt.fedoraproject.org-https,qa07.mgmt.fedoraproject.org,qa07.mgmt.fedoraproject.org-https,qa08.mgmt.fedoraproject.org,qa08.mgmt.fedoraproject.org-https,qa09.mgmt.fedoraproject.org,qa09.mgmt.fedoraproject.org-https,qa10.mgmt.fedoraproject.org,qa10.mgmt.fedoraproject.org-https,qa11.mgmt.fedoraproject.org,qa11.mgmt.fedoraproject.org-https,qa12.mgmt.fedoraproject.org,qa12.mgmt.fedoraproject.org-https,qa13.mgmt.fedoraproject.org,qa13.mgmt.fedoraproject.org-https,qa14.mgmt.fedoraproject.org,qa14.mgmt.fedoraproject.org-https,virthost02.mgmt.fedoraproject.org,virthost02.mgmt.fedoraproject.org-https,virthost11.mgmt.fedoraproject.org,virthost11.mgmt.fedoraproject.org-https,virthost03.mgmt.fedoraproject.org,virthost03.mgmt.fedoraproject.org-https,virthost12.mgmt.fedoraproject.org,virthost12.mgmt.fedoraproject.org-https,virthost14.mgmt.fedoraproject.org,virthost14.mgmt.fedoraproject.org-https,virthost15.mgmt.fedoraproject.org,virthost15.mgmt.fedoraproject.org-https,virthost16.mgmt.fedoraproject.org,virthost16.mgmt.fedoraproject.org-https,virthost17.mgmt.fedoraproject.org,virthost17.mgmt.fedoraproject.org-https,virthost18.mgmt.fedoraproject.org,virthost18.mgmt.fedoraproject.org-https,virthost-comm02.mgmt.fedoraproject.org,virthost-comm02.mgmt.fedoraproject.org-https, virthost-comm03.mgmt.fedoraproject.org,virthost-comm03.mgmt.fedoraproject.org-https, virthost-comm04.mgmt.fedoraproject.org,virthost-comm04.mgmt.fedoraproject.org-https, sign-vault03.mgmt.fedoraproject.org,sign-vault03.mgmt.fedoraproject.org-https,sign-vault04.mgmt.fedoraproject.org,sign-vault04.mgmt.fedoraproject.org-https,fed-cloud09.mgmt.fedoraproject.org,fed-cloud09.mgmt.fedoraproject.org-https,fed-cloud08.mgmt.fedoraproject.org,fed-cloud08.mgmt.fedoraproject.org-https,fed-cloud10.mgmt.fedoraproject.org,fed-cloud10.mgmt.fedoraproject.org-https,fed-cloud11.mgmt.fedoraproject.org,fed-cloud11.mgmt.fedoraproject.org-https,fed-cloud12.mgmt.fedoraproject.org,fed-cloud12.mgmt.fedoraproject.org-https,fed-cloud13.mgmt.fedoraproject.org,fed-cloud13.mgmt.fedoraproject.org-https,fed-cloud14.mgmt.fedoraproject.org,fed-cloud14.mgmt.fedoraproject.org-https,fed-cloud15.mgmt.fedoraproject.org,fed-cloud15.mgmt.fedoraproject.org-https -} diff --git a/roles/nagios/server/files/nagios/servicegroups/mirrorlist.cfg b/roles/nagios/server/files/nagios/servicegroups/mirrorlist.cfg deleted file mode 100644 index 3bfb386761..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/mirrorlist.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define servicegroup { - servicegroup_name mirrorlist - alias Mirrorlist - members proxy01,mirrors.fedoraproject.org - mirrorlist,proxy02,mirrors.fedoraproject.org - mirrorlist,proxy03,mirrors.fedoraproject.org - mirrorlist,proxy04,mirrors.fedoraproject.org - mirrorlist,proxy06,mirrors.fedoraproject.org - mirrorlist,proxy08,mirrors.fedoraproject.org - mirrorlist,proxy09,mirrors.fedoraproject.org - mirrorlist,proxy05,mirrors.fedoraproject.org - mirrorlist,proxy10,mirrors.fedoraproject.org - mirrorlist,proxy11,mirrors.fedoraproject.org - mirrorlist,proxy12,mirrors.fedoraproject.org - mirrorlist -} - diff --git a/roles/nagios/server/files/nagios/servicegroups/pkgdb.cfg b/roles/nagios/server/files/nagios/servicegroups/pkgdb.cfg deleted file mode 100644 index 566078c695..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/pkgdb.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define servicegroup { - servicegroup_name pkgdb - alias Package Database - members proxy01,pkgdb-external,proxy02,pkgdb-external,proxy03,pkgdb-external,proxy04,pkgdb-external,proxy08,pkgdb-external,proxy09,pkgdb-external,pkgdb01,pkgdb-internal,pkgdb02,pkgdb-internal,pkgdb01.stg,pkgdb-internal,proxy11,pkgdb-external,proxy12,pkgdb-external -} - diff --git a/roles/nagios/server/files/nagios/servicegroups/ppc-secondary.cfg b/roles/nagios/server/files/nagios/servicegroups/ppc-secondary.cfg deleted file mode 100644 index ab33bf3f3c..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/ppc-secondary.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define servicegroup { - servicegroup_name ppc-secondary - alias PPC Secondary Hosts - members ppc-hub,ppc-koji-frontend -} diff --git a/roles/nagios/server/files/nagios/servicegroups/retrace.cfg b/roles/nagios/server/files/nagios/servicegroups/retrace.cfg deleted file mode 100644 index dc30917ca4..0000000000 --- a/roles/nagios/server/files/nagios/servicegroups/retrace.cfg +++ /dev/null @@ -1,5 +0,0 @@ -define servicegroup { - servicegroup_name retrace - alias Retrace Hosts - members retrace01.qa,Disk space /,retrace01.qa,Total Processes,retrace01.qa,Check Raid,retrace01.qa,Swap,retrace01.qa,SSH -} diff --git a/roles/nagios/server/files/nagios/services/autocloud.cfg b/roles/nagios/server/files/nagios/services/autocloud.cfg deleted file mode 100644 index 28dcb8f7fd..0000000000 --- a/roles/nagios/server/files/nagios/services/autocloud.cfg +++ /dev/null @@ -1,13 +0,0 @@ -define service { - host_name autocloud-backend-libvirt2,autocloud-backend-vbox2 - service_description Check for autocloud proc - check_command check_by_nrpe!check_autocloud_proc - use defaulttemplate -} - -define service { - host_name autocloud-backend-libvirt2,autocloud-backend-vbox2 - service_description Check for redis proc - check_command check_by_nrpe!check_redis_proc - use defaulttemplate -} diff --git a/roles/nagios/server/files/nagios/services/basset.cfg b/roles/nagios/server/files/nagios/services/basset.cfg deleted file mode 100644 index 4ea295aaa6..0000000000 --- a/roles/nagios/server/files/nagios/services/basset.cfg +++ /dev/null @@ -1,27 +0,0 @@ -define service { - host_name basset01 - service_description mongo process - check_command check_by_nrpe!check_mongo_proc - use defaulttemplate -} - -define service { - host_name basset01 - service_description rabbitmq process - check_command check_by_nrpe!check_rabbitmq_proc - use defaulttemplate -} - -define service { - host_name basset01 - service_description basset worker processes - check_command check_by_nrpe!check_worker_proc - use defaulttemplate -} - -define service { - host_name basset01 - service_description basset processing queue - check_command check_by_nrpe!check_basset_queue - use defaulttemplate -} diff --git a/roles/nagios/server/files/nagios/services/copr.cfg b/roles/nagios/server/files/nagios/services/copr.cfg deleted file mode 100644 index f7ab32985c..0000000000 --- a/roles/nagios/server/files/nagios/services/copr.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define service { - host_name copr-be - service_description Check Copr backend consecutive build failures - check_command check_by_nrpe!check_copr_backend_failed - use defaulttemplate -} diff --git a/roles/nagios/server/files/nagios/services/db_backups.cfg b/roles/nagios/server/files/nagios/services/db_backups.cfg deleted file mode 100644 index c285f7d8a0..0000000000 --- a/roles/nagios/server/files/nagios/services/db_backups.cfg +++ /dev/null @@ -1,21 +0,0 @@ -define service { - host_name db03 - service_description Check MySQL Backup - check_command check_by_nrpe!check_mysql_backup - use defaulttemplate -} - -#define service { -# host_name db05 -# service_description Check Koji PGSQL Backup -# check_command check_by_nrpe!check_pgsql_koji_backup -# use defaulttemplate -#} - -#define service { -# host_name db05, db01 -# service_description Check PGSQL Backup -# check_command check_by_nrpe!check_pgsql_backup -# use defaulttemplate -#} - diff --git a/roles/nagios/server/files/nagios/services/disk.cfg b/roles/nagios/server/files/nagios/services/disk.cfg deleted file mode 100644 index 3811b3b1bc..0000000000 --- a/roles/nagios/server/files/nagios/services/disk.cfg +++ /dev/null @@ -1,99 +0,0 @@ -define service { - hostgroup servers - service_description Disk Space / - check_command check_by_nrpe!check_disk_/ - use disktemplate -} - -#define service { -# hostgroup buildservers -# service_description Disk Space / -# check_command check_by_nrpe!check_disk_/ -# use builderdisktemplate -# retry_check_interval 5 -#} - -define service { - host_name noc01, proxy01, proxy02, rawhide-composer, db01 - service_description Disk Space /boot - check_command check_by_nrpe!check_disk_/boot - use disktemplate -} - -#define service { -# hostgroup hosted -# service_description Disk Space /srv -# check_command check_by_nrpe!check_disk_/srv -# use disktemplate -#} - -define service { - host_name qa10.qa, qa11.qa, qa12.qa, qa13.qa - service_description Disk Space /srv - check_command check_by_nrpe!check_disk_/srv - use disktemplate -} - -define service { - host_name taskotron01.qa, taskotron-stg01.qa, taskotron-dev01.qa - service_description Disk Space /srv/buildmaster - check_command check_by_nrpe!check_disk_/srv/buildmaster - use disktemplate -} - -define service { - host_name taskotron01.qa, taskotron-stg01.qa, taskotron-dev01.qa - service_description Disk Space /srv/taskotron - check_command check_by_nrpe!check_disk_/srv/taskotron - use disktemplate -} - - -#define service { -# host_name hosted04 -# service_description Disk Space /srv -# check_command check_by_nrpe!check_disk_/srv -# use disktemplate -#} - -define service { - host_name log01 - service_description Disk space /var/log - check_command check_by_nrpe!check_disk_/var/log - use disktemplate -} - -#define service { -# host_name nfs01 -# service_description Disk space /mnt/koji -# check_command check_by_nrpe!check_disk_/mnt/koji -# use disktemplate -#} - -define service { - host_name pkgs02 - service_description Check read-only filesystem - check_command check_by_nrpe!check_readonly_fs - use disktemplate -} - -define service { - host_name pkgs02 - service_description Disk space /srv/cache/lookaside - check_command check_by_nrpe!check_disk_/srv/cache/lookaside - use disktemplate -} - -define service { - host_name ppc-hub - service_description Disk space / - check_command check_by_nrpe!check_disk_/ - use ppc-secondarytemplate -} - -define service { - host_name retrace01.qa - service_description Disk space / - check_command check_by_nrpe!check_disk_/ - use retracetemplate -} diff --git a/roles/nagios/server/files/nagios/services/dns.cfg b/roles/nagios/server/files/nagios/services/dns.cfg deleted file mode 100644 index 0f1eb14b8d..0000000000 --- a/roles/nagios/server/files/nagios/services/dns.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define service { - hostgroup_name dnsservers - service_description DNS: fp.o - check_command check_dns_fpo - use criticaltemplate -} diff --git a/roles/nagios/server/files/nagios/services/fedmsg.cfg b/roles/nagios/server/files/nagios/services/fedmsg.cfg deleted file mode 100644 index c2b30ce52b..0000000000 --- a/roles/nagios/server/files/nagios/services/fedmsg.cfg +++ /dev/null @@ -1,731 +0,0 @@ -## There are lots of different sections in this now-enormous file -## Each one starts with a 'BEGIN' comment. - - -# BEGIN, check for the existance of processes -define service { - host_name value01 - service_description Check for fedmsg-irc proc - check_command check_by_nrpe!check_fedmsg_irc_proc - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check for fedmsg-gateway proc - check_command check_by_nrpe!check_fedmsg_gateway_proc - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check for fedmsg-relay proc - check_command check_by_nrpe!check_fedmsg_relay_proc - use defaulttemplate -} - -define service { - host_name proxy01,proxy02,proxy03,proxy04,proxy05,proxy06,proxy08,proxy09,proxy10,proxy11,proxy12 - service_description Check for existence fedmsg-gateway proc - check_command check_by_nrpe!check_fedmsg_gateway_proc - use defaulttemplate -} - -define service { - host_name anitya-frontend01 - service_description Check for fedmsg-relay proc - check_command check_by_nrpe!check_fedmsg_relay_proc - use defaulttemplate -} - -define service { - host_name badges-backend01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} - -define service { - host_name summershum01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} - -define service { - host_name pkgs02 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} - -define service { - host_name fedimg01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} - -define service { - host_name hotness01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} - -define service { - host_name bodhi-backend01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_masher_proc - use defaulttemplate -} - -define service { - host_name bodhi-backend02 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_masher_proc - use defaulttemplate -} -define service { - host_name autocloud-backend-libvirt2,autocloud-backend-vbox2 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} -define service { - host_name packages03 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} -define service { - host_name bugyou01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_procs_bugyou - use defaulttemplate -} -define service { - host_name pdc-backend01 - service_description Check for fedmsg-hub proc - check_command check_by_nrpe!check_fedmsg_hub_proc - use defaulttemplate -} - - -# Odd one, check for the supybot fedmsg plugin -define service { - host_name value01 - service_description Check supybot fedmsg plugin - check_command check_by_nrpe!check_supybot_fedmsg_plugin - use defaulttemplate -} - - -# BEGIN, check datanommer history -define service { - host_name busgateway01 - service_description Check datanommer for recent buildsys/koji messages - check_command check_by_nrpe!check_datanommer_buildsys - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent git messages - check_command check_by_nrpe!check_datanommer_git - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent bodhi messages - check_command check_by_nrpe!check_datanommer_bodhi - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent wiki messages - check_command check_by_nrpe!check_datanommer_wiki - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent compose messages - check_command check_by_nrpe!check_datanommer_compose - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent meetbot messages - check_command check_by_nrpe!check_datanommer_meetbot - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent fas messages - check_command check_by_nrpe!check_datanommer_fas - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent pkgdb messages - check_command check_by_nrpe!check_datanommer_pkgdb - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent fedoratagger messages - check_command check_by_nrpe!check_datanommer_fedoratagger - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent fedoraplanet messages - check_command check_by_nrpe!check_datanommer_planet - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent copr finished build messages - check_command check_by_nrpe!check_datanommer_copr - use defaulttemplate -} -#define service { -# host_name busgateway01 -# service_description Check datanommer for recent trac messages -# check_command check_by_nrpe!check_datanommer_trac -# use defaulttemplate -#} -define service { - host_name busgateway01 - service_description Check datanommer for recent askbot messages - check_command check_by_nrpe!check_datanommer_askbot - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent fedbadges messages - check_command check_by_nrpe!check_datanommer_fedbadges - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent fedocal messages - check_command check_by_nrpe!check_datanommer_fedocal - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent ansible messages - check_command check_by_nrpe!check_datanommer_ansible - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent anitya messages - check_command check_by_nrpe!check_datanommer_anitya - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent fedimg messages - check_command check_by_nrpe!check_datanommer_fedimg - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent hotness messages - check_command check_by_nrpe!check_datanommer_hotness - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent faf messages - check_command check_by_nrpe!check_datanommer_faf - use defaulttemplate -} - -# This one is retired since it times out all the time. Too few messages. -#define service { -# host_name busgateway01 -# service_description Check datanommer for recent nuancier messages -# check_command check_by_nrpe!check_datanommer_nuancier -# use defaulttemplate -#} - -define service { - host_name busgateway01 - service_description Check datanommer for recent mailman messages - check_command check_by_nrpe!check_datanommer_mailman - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check datanommer for recent bugzilla messages - check_command check_by_nrpe!check_datanommer_bugzilla - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check datanommer for recent summershum messages - check_command check_by_nrpe!check_datanommer_summershum - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent jenkins messages - check_command check_by_nrpe!check_datanommer_jenkins - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent github messages - check_command check_by_nrpe!check_datanommer_github - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent kerneltest messages - check_command check_by_nrpe!check_datanommer_kerneltest - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent fmn messages - check_command check_by_nrpe!check_datanommer_fmn - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent autocloud messages - check_command check_by_nrpe!check_datanommer_autocloud - use defaulttemplate -} -define service { - host_name busgateway01 - service_description Check datanommer for recent atomic compose - check_command check_by_nrpe!check_datanommer_twoweekatomic - use defaulttemplate -} - - -# BEGIN, check consumers and producers -define service { - host_name busgateway01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_busgateway_hub - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check fedmsg consumers and producers relay - check_command check_by_nrpe!check_fedmsg_cp_busgateway_relay - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check fedmsg consumers and producers gateway - check_command check_by_nrpe!check_fedmsg_cp_busgateway_gateway - use defaulttemplate -} - -define service { - host_name proxy01,proxy02,proxy03,proxy04,proxy06,proxy08,proxy05,proxy09,proxy10,proxy11,proxy12 - service_description Check fedmsg consumers and producers gateway - check_command check_by_nrpe!check_fedmsg_cp_busgateway_gateway - use defaulttemplate -} - -define service { - host_name anitya-frontend01 - service_description Check fedmsg consumers and producers relay - check_command check_by_nrpe!check_fedmsg_cp_anitya_relay - use defaulttemplate -} - -define service { - host_name value01 - service_description Check fedmsg consumers and producers irc - check_command check_by_nrpe!check_fedmsg_cp_value - use defaulttemplate -} - -define service { - host_name pkgs02 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_pkgs - use defaulttemplate -} - -define service { - host_name summershum01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_summershum - use defaulttemplate -} - -define service { - host_name badges-backend01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_badges_backend - use defaulttemplate -} - -define service { - host_name bugzilla2fedmsg01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_bugzilla2fedmsg - use defaulttemplate -} - -define service { - host_name fedimg01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_fedimg_backend - use defaulttemplate -} - -define service { - host_name hotness01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_hotness_backend - use defaulttemplate -} - -define service { - host_name bodhi-backend01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_bodhi_backend01_hub - use defaulttemplate -} - -define service { - host_name bodhi-backend02 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_bodhi_backend02_hub - use defaulttemplate -} - -define service { - host_name autocloud-backend-libvirt2,autocloud-backend-vbox2 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_autocloud_backend - use defaulttemplate -} -define service { - host_name packages03 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_packages_backend - use defaulttemplate -} -define service { - host_name bugyou01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_bugyou_backend - use defaulttemplate -} -define service { - host_name pdc-backend01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_pdc_backend - use defaulttemplate -} -define service { - host_name mbs-backend01 - service_description Check fedmsg consumers and producers hub - check_command check_by_nrpe!check_fedmsg_cp_mbs_backend - use defaulttemplate -} - - -# BEGIN exceptions counter -define service { - host_name busgateway01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_busgateway_hub - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check fedmsg-relay consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_busgateway_relay - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check fedmsg-gateway consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_busgateway_gateway - use defaulttemplate -} - -define service { - host_name proxy01,proxy02,proxy03,proxy04,proxy06,proxy08,proxy05,proxy09,proxy10,proxy11,proxy12 - service_description Check fedmsg-gateway consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_busgateway_gateway - use defaulttemplate -} - -define service { - host_name anitya-frontend01 - service_description Check fedmsg-relay consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_anitya_relay - use defaulttemplate -} - -define service { - host_name value01 - service_description Check fedmsg-irc consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_value - use defaulttemplate -} - -define service { - host_name pkgs02 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_pkgs - use defaulttemplate -} - -define service { - host_name summershum01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_summershum - use defaulttemplate -} - -define service { - host_name badges-backend01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_badges_backend - use defaulttemplate -} - -define service { - host_name notifs-backend01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_notifs_backend - use defaulttemplate -} - -define service { - host_name bugzilla2fedmsg01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_bugzilla2fedmsg - use defaulttemplate -} - -define service { - host_name fedimg01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_fedimg_backend - use defaulttemplate -} - -define service { - host_name hotness01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_hotness_backend - use defaulttemplate -} - -define service { - host_name bodhi-backend01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_bodhi_backend01_hub - use defaulttemplate -} - -define service { - host_name bodhi-backend02 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_bodhi_backend02_hub - use defaulttemplate -} - -define service { - host_name autocloud-backend-libvirt2,autocloud-backend-vbox2 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_autocloud_backend - use defaulttemplate -} - -define service { - host_name packages03 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_packages_backend - use defaulttemplate -} - -define service { - host_name bugyou01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_bugyou_backend - use defaulttemplate -} - -define service { - host_name pdc-backend01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_pdc_backend - use defaulttemplate -} -define service { - host_name mbs-backend01 - service_description Check fedmsg-hub consumers exceptions - check_command check_by_nrpe!check_fedmsg_cexceptions_mbs_backend - use defaulttemplate -} - - - -# BEGIN backlog checking -define service { - host_name busgateway01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_busgateway_hub - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check fedmsg-relay consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_busgateway_relay - use defaulttemplate -} - -define service { - host_name busgateway01 - service_description Check fedmsg-gateway consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_busgateway_gateway - use defaulttemplate -} - -define service { - host_name proxy01,proxy02,proxy03,proxy04,proxy06,proxy08,proxy05,proxy09,proxy10,proxy11,proxy12 - service_description Check fedmsg-gateway consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_busgateway_gateway - use defaulttemplate -} - -define service { - host_name anitya-frontend01 - service_description Check fedmsg-relay consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_anitya_relay - use defaulttemplate -} - -define service { - host_name value01 - service_description Check fedmsg-irc consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_value - use defaulttemplate -} - -define service { - host_name pkgs02 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_pkgs - use defaulttemplate -} - -define service { - host_name summershum01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_summershum - use defaulttemplate -} - -define service { - host_name badges-backend01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_badges_backend - use defaulttemplate -} - -define service { - host_name notifs-backend01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_notifs_backend - use defaulttemplate -} - -define service { - host_name bugzilla2fedmsg01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_bugzilla2fedmsg - use defaulttemplate -} - -define service { - host_name fedimg01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_fedimg_backend - use defaulttemplate -} - -define service { - host_name hotness01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_hotness_backend - use defaulttemplate -} - -define service { - host_name bodhi-backend01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_bodhi_backend01_hub - use defaulttemplate -} - -define service { - host_name bodhi-backend02 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_bodhi_backend02_hub - use defaulttemplate -} - -define service { - host_name autocloud-backend-libvirt2,autocloud-backend-vbox2 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_autocloud_backend - use defaulttemplate -} - -define service { - host_name packages03 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_packages_backend - use defaulttemplate -} - -define service { - host_name bugyou01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_bugyou_backend - use defaulttemplate -} - -define service { - host_name pdc-backend01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_pdc_backend - use defaulttemplate -} - -define service { - host_name mbs-backend01 - service_description Check fedmsg-hub consumers backlog - check_command check_by_nrpe!check_fedmsg_cbacklog_mbs_backend - use defaulttemplate -} diff --git a/roles/nagios/server/files/nagios/services/file_age.cfg b/roles/nagios/server/files/nagios/services/file_age.cfg deleted file mode 100644 index d258e3f10a..0000000000 --- a/roles/nagios/server/files/nagios/services/file_age.cfg +++ /dev/null @@ -1,18 +0,0 @@ -define service { - host_name mirrorlist-osuosl, mirrorlist-ibiblio02, mirrorlist-phx2, mirrorlist-host1plus, mirrorlist-dedicatedsolutions - service_description Check MirrorList Cache - check_command check_by_nrpe!check_mirrorlist_cache - use defaulttemplate - normal_check_interval 120 - notification_interval 130 -} - -define service { - host_name log01 - service_description Check Merged Log - check_command check_by_nrpe!check_merged_file_age - use defaulttemplate - normal_check_interval 120 - notification_interval 130 - event_handler restart_rsyslog -} diff --git a/roles/nagios/server/files/nagios/services/fmn.cfg b/roles/nagios/server/files/nagios/services/fmn.cfg deleted file mode 100644 index 83c131c5e8..0000000000 --- a/roles/nagios/server/files/nagios/services/fmn.cfg +++ /dev/null @@ -1,13 +0,0 @@ -define service { - host_name notifs-backend01 - service_description Check backend queue size - check_command check_by_nrpe!check_fmn_backend_queue - use defaulttemplate -} - -define service { - host_name notifs-backend01 - service_description Check worker queue size - check_command check_by_nrpe!check_fmn_worker_queue - use defaulttemplate -} diff --git a/roles/nagios/server/files/nagios/services/haproxy.cfg b/roles/nagios/server/files/nagios/services/haproxy.cfg deleted file mode 100644 index d4e87d0314..0000000000 --- a/roles/nagios/server/files/nagios/services/haproxy.cfg +++ /dev/null @@ -1,6 +0,0 @@ -define service { - hostgroup_name proxies - service_description Check proxies for oversubscription - check_command check_by_nrpe!check_haproxy_conns - use defaulttemplate -} diff --git a/roles/nagios/server/files/nagios/services/hosted.cfg b/roles/nagios/server/files/nagios/services/hosted.cfg deleted file mode 100644 index 194792b75c..0000000000 --- a/roles/nagios/server/files/nagios/services/hosted.cfg +++ /dev/null @@ -1,57 +0,0 @@ -#define service { -# hostgroup hosted -# service_description BZR -# check_command check_bzr -# use defaulttemplate -#} -# -#define service { -# hostgroup hosted -# service_description GIT -# check_command check_git -# use defaulttemplate -#} - -#define service { -# hostgroup hosted -# service_description bzr.fedorahosted.org -# check_command check_website!bzr.fedorahosted.org!/bzr/!loggerheadCont -# use websitetemplate -#} -# -#define service { -# hostgroup hosted -# service_description fedorahosted.org -# check_command check_website!fedorahosted.org!/! -# use websitetemplate -#} -# -#define service { -# hostgroup hosted -# service_description git.fedorahosted.org -# check_command check_website!git.fedorahosted.org!/git/fedora-infrastructure.git/!