Skip to content
Snippets Groups Projects
Commit 9c1427fa authored by Jörg Sachse's avatar Jörg Sachse
Browse files

fix: set correct DB name for Dev system

parent dff7dd73
No related branches found
No related tags found
No related merge requests found
...@@ -6,9 +6,10 @@ ...@@ -6,9 +6,10 @@
# ------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------
# RMAN backup variables # RMAN backup variables
export ORACLE_VER="19c"
export ORACLE_BASE="/exlibris/app/oracle" export ORACLE_BASE="/exlibris/app/oracle"
export ORACLE_HOME="/exlibris/app/oracle/product/12r1" export ORACLE_HOME="/exlibris/app/oracle/product/${ORACLE_VER}"
{% if ansible_hostname in 'oradev' %} {% if 'oradev' in ansible_hostname %}
export ORACLE_SID="dps" export ORACLE_SID="dps"
{% else %} {% else %}
export ORACLE_SID="dps3" export ORACLE_SID="dps3"
...@@ -19,7 +20,7 @@ export NLS_CHARACTERSET=UTF8 ...@@ -19,7 +20,7 @@ export NLS_CHARACTERSET=UTF8
export NLS_NCHAR_CHARACTERSET=UTF8 export NLS_NCHAR_CHARACTERSET=UTF8
export NLS_LANG=American_America.UTF8 export NLS_LANG=American_America.UTF8
export PATH="$PATH:/exlibris/app/oracle/product/12r1/bin" export PATH="$PATH:/exlibris/app/oracle/product/${ORACLE_VER}/bin"
# comamnd bindings # comamnd bindings
RMAN_CMD="$ORACLE_HOME/bin/rman" RMAN_CMD="$ORACLE_HOME/bin/rman"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment