diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-07 21:48:05 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-07 21:48:05 +0200 |
commit | cfeebf30947f70d92ea24bd5962b3092f7db8341 (patch) | |
tree | a4865bc5e20f86097a809ca99a9c8d26096cd810 /op-mode-definitions/show-version.xml | |
parent | 4f7e89f03cef469628b73000c4cf97eae6d566a0 (diff) | |
download | vyos-1x-cfeebf30947f70d92ea24bd5962b3092f7db8341.tar.gz vyos-1x-cfeebf30947f70d92ea24bd5962b3092f7db8341.zip |
op-mode: rename version.xml -> show-version.xml
Diffstat (limited to 'op-mode-definitions/show-version.xml')
-rw-r--r-- | op-mode-definitions/show-version.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/op-mode-definitions/show-version.xml b/op-mode-definitions/show-version.xml new file mode 100644 index 000000000..57931fdff --- /dev/null +++ b/op-mode-definitions/show-version.xml @@ -0,0 +1,27 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="version"> + <properties> + <help>Show system version information</help> + </properties> + <command>sudo ${vyos_op_scripts_dir}/version.py</command> + <children> + <leafNode name="funny"> + <properties> + <help>Show system version and some fun stuff</help> + </properties> + <command>sudo ${vyos_op_scripts_dir}/version.py --funny</command> + </leafNode> + <leafNode name="all"> + <properties> + <help>Show system version and versions of all packages</help> + </properties> + <command>sudo ${vyos_op_scripts_dir}/version.py --all</command> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |