Skip to content

Commit 8db7ba5

Browse files
authored
Oracle SOA Suite script and documentation changes for release 25.2.2 (#251)
1 parent e416656 commit 8db7ba5

File tree

402 files changed

+109849
-2227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

402 files changed

+109849
-2227
lines changed

OracleSOASuite/kubernetes/create-soa-domain/domain-home-on-pv/wlst/create-domain-script.sh

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2020, 2024, Oracle and/or its affiliates.
2+
# Copyright (c) 2020, 2025, Oracle and/or its affiliates.
33
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
44

55
export DOMAIN_HOME=${DOMAIN_HOME_DIR}
@@ -42,3 +42,37 @@ wlst.sh -skipWLSModuleScanning \
4242
-soaManagedServerSSLPort ${SOA_MANAGED_SERVER_SSL_PORT} \
4343
-osbManagedServerSSLPort ${OSB_MANAGED_SERVER_SSL_PORT} \
4444
-persistentStore ${PERSISTENCE_STORE}
45+
46+
wlstCmdVal=$?
47+
48+
if [ $wlstCmdVal -ne 0 ]; then
49+
echo "ERROR: Domain creation failed. Please check the logs"
50+
exit 1
51+
else
52+
#For BUG-37807693
53+
export OH=/u01/oracle
54+
JAR_FILE="$OH/oracle_common/modules/oracle.adf.share/adf-share-support.jar"
55+
SCRIPT_TO_CHECK="DomainConfigGraalLibUpdate.sh"
56+
if [ -f $JAR_FILE ]; then
57+
echo "adf-share-support.jar is available, Checking availability of script DomainConfigGraalLibUpdate.sh"
58+
FILE_PATH=$(jar tf "$JAR_FILE" | grep "$SCRIPT_TO_CHECK")
59+
if [ -n "$FILE_PATH" ]; then
60+
echo "File path of DomainConfigGraalLibUpdate.sh - $FILE_PATH"
61+
cd /tmp
62+
jar xvf $JAR_FILE $FILE_PATH
63+
chmod +x $FILE_PATH
64+
echo $OH | /tmp/$FILE_PATH
65+
retVal=$?
66+
if [ $retVal -ne 0 ]; then
67+
echo "ERROR: DomainConfigGraalLibUpdate.sh execution failed. Please check the logs"
68+
exit 1
69+
else
70+
echo "DomainConfigGraalLibUpdate.sh script execution completed"
71+
fi
72+
else
73+
echo "Script DomainConfigGraalLibUpdate.sh not available"
74+
fi
75+
else
76+
echo "$JAR_FILE not available"
77+
fi
78+
fi

OracleSOASuite/kubernetes/create-soa-domain/domain-upgrade/README.md

Lines changed: 0 additions & 75 deletions
This file was deleted.

OracleSOASuite/kubernetes/create-soa-domain/domain-upgrade/scripts/domainUpgrade.sh

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)