Aligned the package layout with the concurrent Debian packaging conventions. Relocated package files under 'debian/bullseye/' and removed legacy paths under 'debian/'. Updated related build references to ensure compatibility with Bullseye. ca-certificate cluster-resource-agents dhcp dnsmasq haproxy libfdt lighttpd linuxptp lvm2 lsb openssl pf-bb-config stalld synce4l systemd watchdog Change-Id: Id31c289b6504433f2b739be614022cfed0c2a9b8 Signed-off-by: pmp1 <preetham.mp@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)
|