summaryrefslogtreecommitdiff
path: root/interface-definitions/system-sysctl.xml.in
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-05-20 20:21:16 +0200
committerChristian Poessinger <christian@poessinger.com>2021-05-20 20:22:37 +0200
commit2cd0f2aad01e57fe052622c7062d472e8cda3bcc (patch)
treee62e4ad326fc1add63bdc57743b7c394cff33646 /interface-definitions/system-sysctl.xml.in
parenta1ab13b533f300353579cf4d23f8e6a77ca02100 (diff)
downloadvyos-1x-2cd0f2aad01e57fe052622c7062d472e8cda3bcc.tar.gz
vyos-1x-2cd0f2aad01e57fe052622c7062d472e8cda3bcc.zip
sysctl: T3565: initial implementation in XML and Python
migrate from old vyatta-cfg-system / Perl implementation.
Diffstat (limited to 'interface-definitions/system-sysctl.xml.in')
-rw-r--r--interface-definitions/system-sysctl.xml.in40
1 files changed, 40 insertions, 0 deletions
diff --git a/interface-definitions/system-sysctl.xml.in b/interface-definitions/system-sysctl.xml.in
new file mode 100644
index 000000000..bf118c24b
--- /dev/null
+++ b/interface-definitions/system-sysctl.xml.in
@@ -0,0 +1,40 @@
+<?xml version="1.0"?>
+<interfaceDefinition>
+ <node name="system">
+ <properties>
+ <help>System parameters</help>
+ </properties>
+ <children>
+ <node name="sysctl" owner="${vyos_conf_scripts_dir}/system_sysctl.py">
+ <properties>
+ <help>Configure kernel parameters at runtime</help>
+ <priority>318</priority>
+ </properties>
+ <children>
+ <tagNode name="parameter">
+ <properties>
+ <help>Sysctl key name</help>
+ <completionHelp>
+ <script>${vyos_completion_dir}/list_sysctl_parameters.sh</script>
+ </completionHelp>
+ <valueHelp>
+ <format>txt</format>
+ <description>Sysctl key name</description>
+ </valueHelp>
+ <constraint>
+ <validator name="sysctl"/>
+ </constraint>
+ </properties>
+ <children>
+ <leafNode name="value">
+ <properties>
+ <help>Sysctl configuration value</help>
+ </properties>
+ </leafNode>
+ </children>
+ </tagNode>
+ </children>
+ </node>
+ </children>
+ </node>
+</interfaceDefinition>