2013-02-01 11:39:06 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
object ServiceGroup "all-services" {
|
2013-03-13 11:28:56 +01:00
|
|
|
display_name = "All Services"
|
2013-02-01 11:39:06 +01:00
|
|
|
}
|
|
|
|
|
2013-02-16 09:18:34 +01:00
|
|
|
template Service "itl-service" {
|
2013-03-14 12:17:46 +01:00
|
|
|
servicegroups = [ "all-services" ]
|
2013-02-01 11:39:06 +01:00
|
|
|
}
|
|
|
|
|
2013-02-16 09:18:34 +01:00
|
|
|
template Service "null-service" inherits "itl-service" {
|
2013-02-11 23:19:33 +01:00
|
|
|
methods = {
|
2013-02-15 12:41:32 +01:00
|
|
|
check = "NullCheck"
|
2013-02-11 23:19:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-16 09:18:34 +01:00
|
|
|
template Service "plugin-service" inherits "itl-service" {
|
2013-02-01 11:39:06 +01:00
|
|
|
methods = {
|
2013-02-15 12:41:32 +01:00
|
|
|
check = "PluginCheck"
|
2013-02-01 11:39:06 +01:00
|
|
|
}
|
|
|
|
}
|