Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b67346f

Browse files
committedJan 8, 2025·
T6998: dhcp.py - fix for empty hostname handling
1 parent 2c21676 commit b67346f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/op_mode/dhcp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def _get_raw_server_leases(family='inet', pool=None, sorted=None, state=[], orig
113113
data_lease['origin'] = 'local' # TODO: Determine remote in HA
114114
data_lease['hostname'] = lease.get('hostname', '-')
115115
# remove trailing dot to ensure consistency for `vyos-hostsd-client`
116-
if data_lease['hostname'][-1] == '.':
116+
if len(data_lease['hostname']) > 1 and data_lease['hostname'][-1] == '.':
117117
data_lease['hostname'] = data_lease['hostname'][:-1]
118118

119119
if family == 'inet':

0 commit comments

Comments
 (0)
Please sign in to comment.