summaryrefslogtreecommitdiff
path: root/interface-definitions/cron.xml
diff options
context:
space:
mode:
authorUnicronNL <kim.sidney@gmail.com>2018-07-01 22:48:06 +0200
committerUnicronNL <kim.sidney@gmail.com>2018-07-01 22:48:06 +0200
commitaaff68c0d55dc32f8972b9bde3239bb0923de140 (patch)
tree3d1d5aa18bd8d100e32d6ee2a4012f49f990117b /interface-definitions/cron.xml
parentcf4738ddbff6858975ff5f2bb0d656453e563848 (diff)
downloadvyos-salt-minion-aaff68c0d55dc32f8972b9bde3239bb0923de140.tar.gz
vyos-salt-minion-aaff68c0d55dc32f8972b9bde3239bb0923de140.zip
add vyos 1.x
Diffstat (limited to 'interface-definitions/cron.xml')
-rw-r--r--interface-definitions/cron.xml75
1 files changed, 75 insertions, 0 deletions
diff --git a/interface-definitions/cron.xml b/interface-definitions/cron.xml
new file mode 100644
index 0000000..2d4921b
--- /dev/null
+++ b/interface-definitions/cron.xml
@@ -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>