The Bug causing dhclient to recall BIND has been identified:
dhclient-script runs with #!/bin/sh -e, causing setup_interface
to fail if no hostname is provided by dhcp as it is the last
statement in that function.
Please apply the patch below which removes -e
diff --git a/modules.d/40network/dhclient-script b/modules.d/40network/dhclient-script
index 4153eb8..f86c258 100755
--- a/modules.d/40network/dhclient-script
+++ b/modules.d/40network/dhclient-script
@@ -1,4 +1,4 @@
-#!/bin/sh -e
+#!/bin/sh
setup_interface() {
ip=$new_ip_address
--
To unsubscribe from this list: send the line "unsubscribe initramfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html