From e57616fe3a46b696fe0520987e129c0ff854535e Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Thu, 20 Jul 2023 14:32:11 +0200 Subject: [PATCH] confd: improve DHCPv4 YANG model descriptions Signed-off-by: Joachim Wiberg --- .../yang/infix-dhcp-client@2023-05-22.yang | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/confd/yang/infix-dhcp-client@2023-05-22.yang b/src/confd/yang/infix-dhcp-client@2023-05-22.yang index bd58020a..d1589269 100644 --- a/src/confd/yang/infix-dhcp-client@2023-05-22.yang +++ b/src/confd/yang/infix-dhcp-client@2023-05-22.yang @@ -25,31 +25,24 @@ module infix-dhcp-client { leaf enabled { type boolean; default "true"; - description - "Globally enables the DHCP client function."; + description "Globally enables the DHCP client function."; } list client-if { key "if-name"; - description - "The list of interfaces for which the client will - be requesting DHCPv4 configuration."; + description "List of interfaces requesting DHCPv4 configuration."; leaf if-name { type if:interface-ref; mandatory true; - description - "Reference to the interface entry that the requested - configuration is relevant to."; + description "Name of the interface."; } leaf enabled { type boolean; default "true"; - description - "Enables the DHCP client function for this interface."; + description "Enable DHCP client for this interface."; } leaf client-id { type string; - description - "DHCP client identifier. When unset, the MAC address is used."; + description "Optional Client ID, option 61, default: MAC address."; } } }