]> granicus.if.org Git - icinga2/blob - itl/command.conf
Implement the "cluster-zone" check task.
[icinga2] / itl / command.conf
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org)    *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 library "methods"
21
22 template CheckCommand "icinga-check-command" {
23         methods.execute = "IcingaCheck"
24 }
25
26 template CheckCommand "cluster-check-command" {
27         methods.execute = "ClusterCheck"
28 }
29
30 template CheckCommand "cluster-zone-check-command" {
31         methods.execute = "ClusterZoneCheck"
32 }
33
34 template CheckCommand "plugin-check-command" {
35         methods.execute = "PluginCheck"
36 }
37
38 template CheckCommand "clr-check-command" {
39         methods.execute = "ClrCheck"
40 }
41
42 template NotificationCommand "plugin-notification-command" {
43         methods.execute = "PluginNotification"
44 }
45
46 template EventCommand "plugin-event-command" {
47         methods.execute = "PluginEvent"
48 }