From 3437b8b03c7ff0a62c882a5c5ce4423d79aff847 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 27 Apr 2020 16:08:05 -0400 Subject: [PATCH] Actually write out dhcp conf in initquee dhcp was not written out during initqueue phase --- misc/confluent-initqueue.sh.rh8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/confluent-initqueue.sh.rh8 b/misc/confluent-initqueue.sh.rh8 index f6204a45..4a224b0c 100644 --- a/misc/confluent-initqueue.sh.rh8 +++ b/misc/confluent-initqueue.sh.rh8 @@ -47,7 +47,7 @@ export root autoconfigmethod=$(grep ipv4_method /tmp/confluent.deploycfg) autoconfigmethod=${autoconfigmethod#ipv4_method: } if [ "$autoconfigmethod" = "dhcp" ]; then - echo ip=$ifname:dhcp + echo ip=$ifname:dhcp >> /etc/cmdline.d/01-confluent.conf else v4addr=$(grep ^ipv4_address: /tmp/confluent.deploycfg) v4addr=${v4addr#ipv4_address: }