From 701a9a726841fb62011d2426f83e125654f42d29 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 22 Jun 2026 09:59:40 -0400 Subject: [PATCH] Adjustments for Suse 16.1 beta --- confluent_osdeploy/suse16/profiles/server/autoinstall.sh | 6 +++--- confluent_server/confluent/osimage.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/confluent_osdeploy/suse16/profiles/server/autoinstall.sh b/confluent_osdeploy/suse16/profiles/server/autoinstall.sh index 72ab04a9..53ef6a00 100644 --- a/confluent_osdeploy/suse16/profiles/server/autoinstall.sh +++ b/confluent_osdeploy/suse16/profiles/server/autoinstall.sh @@ -19,6 +19,6 @@ python3 /opt/confluent/bin/apiclient /confluent-public/os/$profile/scripts/pre.s chmod +x /tmp/pre.sh /tmp/pre.sh > $serialcons 2>&1 kill $tailpid -agama config load /tmp/autoinstall.json > $serialcons 2>&1 -agama install > $serialcons 2>&1 -agama finish > $serialcons 2>&1 +agama config load /tmp/autoinstall.json <> $serialcons > $serialcons 2>&1 +agama install <> $serialcons > $serialcons 2>&1 +agama finish <> $serialcons > $serialcons 2>&1 diff --git a/confluent_server/confluent/osimage.py b/confluent_server/confluent/osimage.py index f246e5c5..0d30d328 100644 --- a/confluent_server/confluent/osimage.py +++ b/confluent_server/confluent/osimage.py @@ -644,7 +644,7 @@ def check_sles(isoinfo): elif '.2' in medianame: disk = '2' elif hline[-1].startswith('16'): - if hline[1] == 'openSUSE': + if hline[1] in ('openSUSE', 'Leap'): distro = 'opensuse_leap' else: distro = 'sle'