2013-06-13 11:33:00 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2013-06-13 11:33:00 +02:00
|
|
|
* *
|
|
|
|
* 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; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-11-05 08:29:22 +01:00
|
|
|
library "methods"
|
|
|
|
|
2013-11-12 12:04:52 +01:00
|
|
|
template CheckCommand "icinga-check-command" {
|
2014-03-30 15:04:53 +02:00
|
|
|
methods.execute = "IcingaCheck"
|
2013-11-12 12:04:52 +01:00
|
|
|
}
|
|
|
|
|
2014-02-07 14:03:53 +01:00
|
|
|
template CheckCommand "cluster-check-command" {
|
2014-03-30 15:04:53 +02:00
|
|
|
methods.execute = "ClusterCheck"
|
2014-02-07 14:03:53 +01:00
|
|
|
}
|
|
|
|
|
2013-06-13 11:33:00 +02:00
|
|
|
template CheckCommand "plugin-check-command" {
|
2014-03-30 15:04:53 +02:00
|
|
|
methods.execute = "PluginCheck"
|
2013-06-13 11:33:00 +02:00
|
|
|
}
|
|
|
|
|
2014-04-16 10:39:13 +02:00
|
|
|
template CheckCommand "clr-check-command" {
|
|
|
|
methods.execute = "ClrCheck"
|
|
|
|
}
|
|
|
|
|
2013-06-13 11:33:00 +02:00
|
|
|
template NotificationCommand "plugin-notification-command" {
|
2014-03-30 15:04:53 +02:00
|
|
|
methods.execute = "PluginNotification"
|
2013-06-13 11:33:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template EventCommand "plugin-event-command" {
|
2014-03-30 15:04:53 +02:00
|
|
|
methods.execute = "PluginEvent"
|
2013-06-13 11:33:00 +02:00
|
|
|
}
|