summaryrefslogtreecommitdiff
path: root/op-mode-definitions/show-configuration.xml
diff options
context:
space:
mode:
authorRunar Borge <runar@borge.nu>2018-06-07 23:56:11 +0200
committerRunar Borge <runar@borge.nu>2018-06-07 23:56:11 +0200
commitaad1bd7eed672e95d9f49b5c492ba59b30c6b68c (patch)
treeb050937c7ea8c2483d7b9fbaa8420271ba627b1b /op-mode-definitions/show-configuration.xml
parent327e8d203635d435d75b57f30df6695b56ff63ee (diff)
downloadvyos-1x-aad1bd7eed672e95d9f49b5c492ba59b30c6b68c.tar.gz
vyos-1x-aad1bd7eed672e95d9f49b5c492ba59b30c6b68c.zip
T689: Convert shwo configuration to new syntax
Diffstat (limited to 'op-mode-definitions/show-configuration.xml')
-rw-r--r--op-mode-definitions/show-configuration.xml39
1 files changed, 39 insertions, 0 deletions
diff --git a/op-mode-definitions/show-configuration.xml b/op-mode-definitions/show-configuration.xml
new file mode 100644
index 000000000..3fe3cb0dc
--- /dev/null
+++ b/op-mode-definitions/show-configuration.xml
@@ -0,0 +1,39 @@
+<?xml version="1.0"?>
+<interfaceDefinition>
+ <node name="show">
+ <children>
+ <node name="configuration">
+ <properties>
+ <help>Show available saved configurations</help>
+ </properties>
+ <!-- no admin check -->
+ <command>cli-shell-api showCfg --show-active-only --show-hide-secrets</command>
+
+ <children>
+ <node name="all">
+ <properties>
+ <help>Show running configuration (including default values)</help>
+ </properties>
+ <!-- no admin check -->
+ <command>cli-shell-api showCfg --show-show-defaults --show-active-only --show-hide-secrets</command>
+ </node>
+ <node name="commands">
+ <properties>
+ <help> Show running configuration as set commands </help>
+ </properties>
+ <!-- no admin check -->
+ <command>${vyatta_sbindir}/vyatta-config-gen-sets.pl</command>
+ </node>
+ <node name="files">
+ <properties>
+ <help> Show available saved configurations </help>
+ </properties>
+ <!-- no admin check -->
+ <command>${vyos_op_scripts_dir}/show-configuration-files.sh</command>
+ </node>
+ </children>
+ </node>
+
+ </children>
+ </node>
+</interfaceDefinition>