#!/bin/sh
#echo "JRT_RUN_HOME is:$JRT_RUN_HOME"
#echo "OWB_JRT_RUN_HOME is:$OWB_JRT_RUN_HOME"


if [ "x$JRT_RUN_HOME" != "x" ]; then
sed -e 's=%ORACLE_HOME%='"$OWB_HOME"'=g' $JRT_RUN_HOME/config/secure-web-site.tpl > $JRT_RUN_HOME/config/secure-web-site.xml
fi


if [ "x$OWB_JRT_RUN_HOME" != "x" ]; then
sed -e 's=%ORACLE_HOME%='"$OWB_HOME"'=g' $OWB_JRT_RUN_HOME/config/secure-web-site.tpl > $OWB_JRT_RUN_HOME/config/secure-web-site.xml
fi

