Open
Description
Hi,
I'm running into a problem trying to customise the PDB being created in the 23ai Free image. The documentation says the ORACLE_PDB environment variable can be used to customise this, but when set it is ignored and FREEPDB1 created. I think this is due to this block overwriting any passed value. Line 214 later on handles the default value, so could the export below could potentially be removed?
# Sanitizing env for FREE
if [ "${ORACLE_SID}" = "FREE" ]; then
export ORACLE_PDB="FREEPDB1"
unset DG_OBSERVER_ONLY CLONE_DB STANDBY_DB
fi