mirror of https://github.com/Icinga/icinga2.git
parent
8136cda367
commit
9eb7cfa620
|
@ -169,7 +169,7 @@ object return T_OBJECT;
|
|||
template return T_TEMPLATE;
|
||||
include return T_INCLUDE;
|
||||
include_recursive return T_INCLUDE_RECURSIVE;
|
||||
include_zones return T_INCLUDE_ZONES;
|
||||
include_zones return T_INCLUDE_ZONES;
|
||||
library return T_LIBRARY;
|
||||
null return T_NULL;
|
||||
true { yylval->boolean = 1; return T_BOOLEAN; }
|
||||
|
|
|
@ -323,6 +323,7 @@ const std::vector<String>& ConfigCompiler::GetKeywords(void)
|
|||
keywords.push_back("template");
|
||||
keywords.push_back("include");
|
||||
keywords.push_back("include_recursive");
|
||||
keywords.push_back("include_zones");
|
||||
keywords.push_back("library");
|
||||
keywords.push_back("null");
|
||||
keywords.push_back("true");
|
||||
|
@ -333,6 +334,7 @@ const std::vector<String>& ConfigCompiler::GetKeywords(void)
|
|||
keywords.push_back("globals");
|
||||
keywords.push_back("locals");
|
||||
keywords.push_back("use");
|
||||
keywords.push_back("ignore_on_error");
|
||||
keywords.push_back("apply");
|
||||
keywords.push_back("to");
|
||||
keywords.push_back("where");
|
||||
|
|
Loading…
Reference in New Issue