diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-08-18 08:25:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-18 08:25:31 +0200 |
commit | bd70e8b030121a95eb9f9abcbe137917329020b8 (patch) | |
tree | 24c5a9551380f7b9b377a3d02953f2f2175bc099 /op-mode-definitions/dynamic-dns.xml | |
parent | 9a204594dd0ada8d117d37c9ad5f0d4a59ff43fd (diff) | |
parent | 7a27726e0e1e1de47f8abfb64e9c28eadb34c55b (diff) | |
download | vyos-1x-bd70e8b030121a95eb9f9abcbe137917329020b8.tar.gz vyos-1x-bd70e8b030121a95eb9f9abcbe137917329020b8.zip |
Merge pull request #31 from alkersan/ddns_update
T784: Added update dns dynamic operation
Diffstat (limited to 'op-mode-definitions/dynamic-dns.xml')
-rw-r--r-- | op-mode-definitions/dynamic-dns.xml | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/op-mode-definitions/dynamic-dns.xml b/op-mode-definitions/dynamic-dns.xml index c67769a83..76c473fd7 100644 --- a/op-mode-definitions/dynamic-dns.xml +++ b/op-mode-definitions/dynamic-dns.xml @@ -4,6 +4,9 @@ <node name="show"> <children> <node name="dns"> + <properties> + <help>Show DNS information</help> + </properties> <children> <node name="dynamic"> <properties> @@ -14,7 +17,7 @@ <properties> <help>Show Dynamic DNS status</help> </properties> - <command>sudo ${vyos_op_scripts_dir}/dynamic_dns_status.py</command> + <command>sudo ${vyos_op_scripts_dir}/dynamic_dns.py --status</command> </leafNode> </children> </node> @@ -22,4 +25,24 @@ </node> </children> </node> + <node name="update"> + <properties> + <help>Update data for a service</help> + </properties> + <children> + <node name="dns"> + <properties> + <help>Update DNS information</help> + </properties> + <children> + <node name="dynamic"> + <properties> + <help>Update Dynamic DNS information</help> + </properties> + <command>sudo ${vyos_op_scripts_dir}/dynamic_dns.py --update</command> + </node> + </children> + </node> + </children> + </node> </interfaceDefinition> |