diff options
Diffstat (limited to 'op-mode-definitions/show-ntp.xml.in')
-rw-r--r-- | op-mode-definitions/show-ntp.xml.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/op-mode-definitions/show-ntp.xml.in b/op-mode-definitions/show-ntp.xml.in new file mode 100644 index 000000000..01f4477d8 --- /dev/null +++ b/op-mode-definitions/show-ntp.xml.in @@ -0,0 +1,30 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="ntp"> + <properties> + <help>Show peer status of NTP daemon</help> + </properties> + <command>${vyos_op_scripts_dir}/show_ntp.sh --basic</command> + <children> + <tagNode name="server"> + <properties> + <help>Show date and time of specified NTP server</help> + <completionHelp> + <script>${vyos_completion_dir}/list_ntp_servers.sh</script> + </completionHelp> + </properties> + <command>${vyos_op_scripts_dir}/show_ntp.sh --server "$4"</command> + </tagNode> + <node name="info"> + <properties> + <help>Show NTP operational summary</help> + </properties> + <command>${vyos_op_scripts_dir}/show_ntp.sh --info</command> + </node> + </children> + </node> + </children> + </node> +</interfaceDefinition> |