From 11796cda81d60d1a59107604161e0442a50f4175 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 9 Sep 2021 16:51:27 -0400 Subject: [PATCH] Correct the ipv6 prefix name --- .../genesis/initramfs/opt/confluent/bin/rungenesis | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis b/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis index e887feda..49ed3dca 100644 --- a/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis +++ b/confluent_osdeploy/genesis/initramfs/opt/confluent/bin/rungenesis @@ -108,8 +108,8 @@ if [ "$autoconfigmethod" = "static" ]; then if [ "$ipgw" = "null" ]; then ipgw="" fi - ipnm=$(grep ^prefix: /etc/confluent/confluent.deploycfg) - ipnm=${ipnm#prefix: } + ipnm=$(grep ^ipv6_prefix: /etc/confluent/confluent.deploycfg) + ipnm=${ipnm#ipv6_prefix: } echo "Setting up $ifname as static at $ipaddr/$ipnm" ip addr add dev $ifname $ipaddr/$ipnm if [ ! -z "$ipgw" ]; then