diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-09-07 03:27:55 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-09-07 03:27:55 +0200 |
commit | 41752cbef7b9e647feaa4a889c29fe76ca3a4c9f (patch) | |
tree | 7ad4bc50921dff36fa59474e4d07215fc347c13a /interface-definitions | |
parent | 08ecdea5e7b838e94b6654eb165f0f652ebbb584 (diff) | |
download | vyos-1x-41752cbef7b9e647feaa4a889c29fe76ca3a4c9f.tar.gz vyos-1x-41752cbef7b9e647feaa4a889c29fe76ca3a4c9f.zip |
Add interface definition for cron and enable templates building in the makefiles.
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/cron.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/interface-definitions/cron.xml b/interface-definitions/cron.xml new file mode 100644 index 000000000..1982ac87c --- /dev/null +++ b/interface-definitions/cron.xml @@ -0,0 +1,69 @@ +<?xml version="1.0"?> + +<!-- Cron configuration --> + +<interfaceDefinition> + <node name="system" owner="vyos-update-cron"> + <children> + <node name="task-scheduler"> + <children> + <tagNode name="task"> + <properties> + <help>Scheduled task</help> + <valueHelp> + <format><string></format> + <description>Task name</description> + </valueHelp> + <priority>999</priority> + </properties> + <children> + <leafNode name="crontab-spec"> + <properties> + <help>UNIX crontab time specification string</help> + </properties> + </leafNode> + <leafNode name="interval"> + <properties> + <help>Execution interval</help> + </properties> + </leafNode> + <node name="executable"> + <properties> + <help>Executable path and arguments</help> + </properties> + <children> + <leafNode name="path"> + <properties> + <help>Path to executable</help> + </properties> + </leafNode> + <leafNode name="arguments"> + <properties> + <help>Arguments passed to the executable</help> + <valueHelp> + <format><minutes></format> + <description>Execution interval in minutes</description> + </valueHelp> + <valueHelp> + <format><minutes>m</format> + <description>Execution interval in minutes</description> + </valueHelp> + <valueHelp> + <format><hours>h</format> + <description>Execution interval in hours</description> + </valueHelp> + <valueHelp> + <format><days>d</format> + <description>Execution interval in days</description> + </valueHelp> + </properties> + </leafNode> + </children> + </node> + </children> + </tagNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |