File 0001-Fix-Build-HANASPS05rev59.16-openQA-test-fails-in-wiz.patch of Package sap-installation-wizard.37688
From dfa32c3bc1d2a9dda9e6094894bb9c7864b83772 Mon Sep 17 00:00:00 2001
From: Peter Varkoly <varkoly@suse.com>
Date: Wed, 26 Feb 2025 12:54:01 +0100
Subject: [PATCH 1/1] Fix [Build HANASPS05rev59.16] openQA test fails in
wizard_hana_install. bsc#1237719
---
include/hana_inst.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/hana_inst.sh b/include/hana_inst.sh
index f057362..4783011 100755
--- a/include/hana_inst.sh
+++ b/include/hana_inst.sh
@@ -400,10 +400,10 @@ hana_lcm_workflow()
hana_setenv_lcm
if [ "${ARCH}" = "X86_64" ];then
- LCM_COMPONENTS=client,afl,studio,server
+ LCM_COMPONENTS=all
else
if [ "${ARCH:0:5}" = "PPC64" ];then
- LCM_COMPONENTS=client,afl,server
+ LCM_COMPONENTS=all
else
yast_popup_wait "Cannot install HANA. Platform ${ARCH} not supported by SUSE installation wizard."
rc=1
@@ -421,7 +421,7 @@ hana_lcm_workflow()
;;
esac
cd "${HDBLCMDIR}"
- cat ~/pwds.xml | ./hdblcm --batch --action=install ${LCM_COMPONENTS_ROOT} --components=${LCM_COMPONENTS} --sid=${SID} --number=${SAPINSTNR} --read_password_from_stdin=xml --configfile=${MEDIA_TARGET}/hana_mdc.conf
+ cat ~/pwds.xml | ./hdblcm --batch --action=install --components=${LCM_COMPONENTS} --sid=${SID} --number=${SAPINSTNR} --read_password_from_stdin=xml --configfile=${MEDIA_TARGET}/hana_mdc.conf
rc=$?
rm ~/pwds.xml
return $rc
--
2.43.0