Added packaging support for Trixie under 'debian/trixie/'. This change brings updates from the 'f/trixie' branch into 'master' to ensure consistent functionality and packaging structure across both branches. base-passwd ca-certificates cluster-resource-agents dhcp dnsmasq haproxy libfdt lighttpd linuxptp lvm2 lsb openssl pf-bb-config stalld synce4l systemd systemd-presets Story: 2011360 Task: 53245 Change-Id: Ib3f098217c8b85cd80be9c13223b5bf4f71f4805 Signed-off-by: pmp1 <preetham.mp@windriver.com> Signed-off-by: Abhinav Ayyapasetti <ayyapasetti.abhinav@windriver.com>
25 lines
600 B
Diff
25 lines
600 B
Diff
The dhcp upstream commit 9261cb141 introduces a function
|
|
set_hostname() set host name, and the commit also implements
|
|
the DHCPv6 Handlers, so insert the set_hostname to the
|
|
BOUND6|RENEW6|REBIND6 implementation.
|
|
|
|
Yue Tao <yue.tao@windriver.com>
|
|
|
|
---
|
|
client/scripts/linux | 13 +++++++++++++
|
|
1 file changed, 13 insertions(+)
|
|
|
|
diff --git a/client/scripts/linux b/client/scripts/linux
|
|
index 14655f0..59e764f 100755
|
|
--- a/client/scripts/linux
|
|
+++ b/client/scripts/linux
|
|
@@ -460,6 +460,8 @@ case "$reason" in
|
|
make_resolv_conf
|
|
fi
|
|
|
|
+ set_hostname
|
|
+
|
|
;;
|
|
|
|
DEPREF6)
|