summaryrefslogtreecommitdiff
path: root/interface-definitions/cron.xml.in
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@sentrium.io>2019-12-10 05:12:15 +0700
committerGitHub <noreply@github.com>2019-12-10 05:12:15 +0700
commitbe09f1ec2bbc2ba23c718b01a5f3b52dde44695f (patch)
treeb5509a7d1d12ac7270f4177526cc51a1e8b6cd64 /interface-definitions/cron.xml.in
parenteced4a49c67d2e0e3e131193afe679aee0c5c679 (diff)
parent0b3e8ee977604f2412dfcfa3da5ad24d56c1c7a5 (diff)
downloadvyos-1x-be09f1ec2bbc2ba23c718b01a5f3b52dde44695f.tar.gz
vyos-1x-be09f1ec2bbc2ba23c718b01a5f3b52dde44695f.zip
Merge pull request #178 from c-po/t1843-xml-preprocessor
Add GCC preprocessor support for XML files
Diffstat (limited to 'interface-definitions/cron.xml.in')
-rw-r--r--interface-definitions/cron.xml.in75
1 files changed, 75 insertions, 0 deletions
diff --git a/interface-definitions/cron.xml.in b/interface-definitions/cron.xml.in
new file mode 100644
index 000000000..2d4921bf0
--- /dev/null
+++ b/interface-definitions/cron.xml.in
@@ -0,0 +1,75 @@
+<?xml version="1.0"?>
+
+<!-- Cron configuration -->
+
+<interfaceDefinition>
+ <node name="system">
+ <children>
+ <node name="task-scheduler">
+ <properties>
+ <help>Task scheduler settings</help>
+ </properties>
+ <children>
+ <tagNode name="task" owner="${vyos_conf_scripts_dir}/task_scheduler.py">
+ <properties>
+ <help>Scheduled task</help>
+ <valueHelp>
+ <format>&lt;string&gt;</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>
+ <valueHelp>
+ <format>&lt;minutes&gt;</format>
+ <description>Execution interval in minutes</description>
+ </valueHelp>
+ <valueHelp>
+ <format>&lt;minutes&gt;m</format>
+ <description>Execution interval in minutes</description>
+ </valueHelp>
+ <valueHelp>
+ <format>&lt;hours&gt;h</format>
+ <description>Execution interval in hours</description>
+ </valueHelp>
+ <valueHelp>
+ <format>&lt;days&gt;d</format>
+ <description>Execution interval in days</description>
+ </valueHelp>
+ <constraint>
+ <regex>[1-9]([0-9]*)([mhd]{0,1})</regex>
+ </constraint>
+ </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>
+ </properties>
+ </leafNode>
+ </children>
+ </node>
+ </children>
+ </tagNode>
+ </children>
+ </node>
+ </children>
+ </node>
+</interfaceDefinition>