Removed the '#' prefix for the config statements 'include' and 'library'.

This commit is contained in:
Gunnar Beutner 2013-03-21 14:30:28 +01:00
parent 99bd0f0189
commit a03d609f7c
5 changed files with 14 additions and 14 deletions

View File

@ -7,8 +7,8 @@
* description of what configuration options are available. * description of what configuration options are available.
*/ */
#include <itl/itl.conf> include <itl/itl.conf>
#include <itl/standalone.conf> include <itl/standalone.conf>
/** /**
* Global configuration settings * Global configuration settings
@ -24,7 +24,7 @@ local object IcingaApplication "icinga" {
* files. These are used by the Icinga 1.x CGIs to display the state of * files. These are used by the Icinga 1.x CGIs to display the state of
* hosts and services. * hosts and services.
*/ */
#library "compat" library "compat"
local object CompatComponent "compat" { } local object CompatComponent "compat" { }
/** /**

View File

@ -18,7 +18,7 @@ local object IcingaApplication "icinga" {
state_path = "icinga2.state", state_path = "icinga2.state",
macros = { macros = {
plugindir = "C:\Plugins" plugindir = "C:\\Plugins"
} }
} }
@ -27,7 +27,7 @@ local object IcingaApplication "icinga" {
* files. These are used by the Icinga 1.x CGIs to display the state of * files. These are used by the Icinga 1.x CGIs to display the state of
* hosts and services. * hosts and services.
*/ */
#library "compat" library "compat"
local object Component "compat" { local object Component "compat" {
status_path = "status.dat", status_path = "status.dat",
objects_path = "objects.cache", objects_path = "objects.cache",

View File

@ -22,7 +22,7 @@
* configuration templates. * configuration templates.
*/ */
#include "host.conf" include "host.conf"
#include "service.conf" include "service.conf"
#include "service-common.conf" include "service-common.conf"
#include "notification.conf" include "notification.conf"

View File

@ -17,11 +17,11 @@
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. * * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/ ******************************************************************************/
#library "checker" library "checker"
local object CheckerComponent "checker" {} local object CheckerComponent "checker" {}
#library "delegation" library "delegation"
local object DelegationComponent "delegation" {} local object DelegationComponent "delegation" {}
#library "notification" library "notification"
local object NotificationComponent "notification" {} local object NotificationComponent "notification" {}

View File

@ -195,8 +195,8 @@ abstract return T_ABSTRACT;
local return T_LOCAL; local return T_LOCAL;
object return T_OBJECT; object return T_OBJECT;
template return T_TEMPLATE; template return T_TEMPLATE;
#include return T_INCLUDE; include return T_INCLUDE;
#library return T_LIBRARY; library return T_LIBRARY;
inherits return T_INHERITS; inherits return T_INHERITS;
null return T_NULL; null return T_NULL;
partial return T_PARTIAL; partial return T_PARTIAL;