From 906011a80b30e225a2939a40f30d89ac24360cde Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 7 Dec 2020 12:35:33 -0500 Subject: [PATCH] Support 8.3 install In 8.3, they refactored how network configuration is managed early in install. Fix by detecting the presence of the nm-lib and calling it's function again to re-read the new cmdline. --- .../initramfs/usr/lib/dracut/hooks/initqueue/01-confluent.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/confluent_osdeploy/el8/initramfs/usr/lib/dracut/hooks/initqueue/01-confluent.sh b/confluent_osdeploy/el8/initramfs/usr/lib/dracut/hooks/initqueue/01-confluent.sh index c64e181a..aa81e4f8 100644 --- a/confluent_osdeploy/el8/initramfs/usr/lib/dracut/hooks/initqueue/01-confluent.sh +++ b/confluent_osdeploy/el8/initramfs/usr/lib/dracut/hooks/initqueue/01-confluent.sh @@ -106,4 +106,8 @@ while read -r entry; do continue fi done < /etc/confluent/confluent.deploycfg +if [ -e /lib/nm-lib.sh ]; then + . /lib/nm-lib.sh + nm_generate_connections +fi