diff options
author | Christian Breunig <christian@breunig.cc> | 2025-01-20 20:29:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-20 20:29:25 +0100 |
commit | b6e8243d0a5cc14cb6d7abc79d974179ab1df476 (patch) | |
tree | 6e7ce0cba976dc7c2731588582446e069aaba00a /op-mode-definitions/dhcp.xml.in | |
parent | bf098d5eb8574a89bf5e68557c372f893d29b667 (diff) | |
parent | 5f06e1cb23e3094eadf560b1008fca0080fed70a (diff) | |
download | vyos-1x-b6e8243d0a5cc14cb6d7abc79d974179ab1df476.tar.gz vyos-1x-b6e8243d0a5cc14cb6d7abc79d974179ab1df476.zip |
Merge pull request #4307 from indrajitr/kea-refactor
dhcp: T7052: Refactor kea dhcp op-mode functions to vyos.kea
Diffstat (limited to 'op-mode-definitions/dhcp.xml.in')
-rw-r--r-- | op-mode-definitions/dhcp.xml.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/op-mode-definitions/dhcp.xml.in b/op-mode-definitions/dhcp.xml.in index 63b1f62bb..4ee66a90c 100644 --- a/op-mode-definitions/dhcp.xml.in +++ b/op-mode-definitions/dhcp.xml.in @@ -140,7 +140,7 @@ <properties> <help>Show DHCP server statistics</help> </properties> - <command>${vyos_op_scripts_dir}/dhcp.py show_pool_statistics --family inet</command> + <command>${vyos_op_scripts_dir}/dhcp.py show_server_pool_statistics --family inet</command> <children> <tagNode name="pool"> <properties> @@ -149,7 +149,7 @@ <path>service dhcp-server shared-network-name</path> </completionHelp> </properties> - <command>${vyos_op_scripts_dir}/dhcp.py show_pool_statistics --family inet --pool $6</command> + <command>${vyos_op_scripts_dir}/dhcp.py show_server_pool_statistics --family inet --pool $6</command> </tagNode> </children> </node> @@ -232,7 +232,7 @@ <properties> <help>Show DHCPv6 server statistics</help> </properties> - <command>${vyos_op_scripts_dir}/dhcp.py show_pool_statistics --family inet6</command> + <command>${vyos_op_scripts_dir}/dhcp.py show_server_pool_statistics --family inet6</command> <children> <tagNode name="pool"> <properties> @@ -241,7 +241,7 @@ <path>service dhcpv6-server shared-network-name</path> </completionHelp> </properties> - <command>${vyos_op_scripts_dir}/dhcp.py show_pool_statistics --family inet6 --pool $6</command> + <command>${vyos_op_scripts_dir}/dhcp.py show_server_pool_statistics --family inet6 --pool $6</command> </tagNode> </children> </node> |