From 9c152f1f5c4605d208cd4226d6b077e901fde794 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Wed, 30 Oct 2013 19:32:15 +0100 Subject: [PATCH] Fix command_line accessor. Refs #4980 --- lib/icinga/command.ti | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/icinga/command.ti b/lib/icinga/command.ti index 7b62f4e85..085f8e546 100644 --- a/lib/icinga/command.ti +++ b/lib/icinga/command.ti @@ -5,7 +5,7 @@ namespace icinga class Command : DynamicObject { - [config] Value command_line; + [config] Value command (CommandLine); [config] Value timeout { default {{{ return 300; }}} }; @@ -14,4 +14,4 @@ class Command : DynamicObject [config] Array::Ptr escape_macros; }; -} \ No newline at end of file +}