2014-10-17 13:44:31 -04:00
|
|
|
/******************************************************************************
|
|
|
|
|
* Icinga 2 *
|
2018-10-18 03:30:00 -04:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2014-10-17 13:44:31 -04: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. *
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2015-01-21 02:47:45 -05:00
|
|
|
#include "base/function.hpp"
|
2013-10-26 03:41:45 -04:00
|
|
|
|
2015-08-04 08:47:44 -04:00
|
|
|
library icinga;
|
|
|
|
|
|
2013-10-26 03:41:45 -04:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
2014-05-12 10:45:25 -04:00
|
|
|
abstract class Command : CustomVarObject
|
2013-10-26 03:41:45 -04:00
|
|
|
{
|
2013-10-30 14:32:15 -04:00
|
|
|
[config] Value command (CommandLine);
|
2014-04-26 07:16:08 -04:00
|
|
|
[config] Value arguments;
|
2014-11-30 17:32:13 -05:00
|
|
|
[config] int timeout {
|
2014-05-19 07:09:26 -04:00
|
|
|
default {{{ return 60; }}}
|
2013-10-26 03:41:45 -04:00
|
|
|
};
|
2014-04-04 16:57:56 -04:00
|
|
|
[config] Dictionary::Ptr env;
|
2014-11-30 17:32:13 -05:00
|
|
|
[config, required] Function::Ptr execute;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
validator Command {
|
|
|
|
|
String command;
|
|
|
|
|
Function command;
|
|
|
|
|
Array command {
|
|
|
|
|
String "*";
|
|
|
|
|
Function "*";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Dictionary arguments {
|
|
|
|
|
String "*";
|
2015-06-18 02:13:40 -04:00
|
|
|
Function "*";
|
2014-11-30 17:32:13 -05:00
|
|
|
Dictionary "*" {
|
|
|
|
|
String key;
|
|
|
|
|
String value;
|
|
|
|
|
Function value;
|
|
|
|
|
String description;
|
|
|
|
|
Number "required";
|
|
|
|
|
Number skip_key;
|
|
|
|
|
Number repeat_key;
|
|
|
|
|
String set_if;
|
|
|
|
|
Function set_if;
|
|
|
|
|
Number order;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Dictionary env {
|
|
|
|
|
String "*";
|
|
|
|
|
Function "*";
|
|
|
|
|
};
|
2013-10-26 03:41:45 -04:00
|
|
|
};
|
|
|
|
|
|
2013-10-30 14:32:15 -04:00
|
|
|
}
|