Skip to content

Commit

Permalink
build release 2.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oehrlis committed Feb 23, 2023
1 parent b2dda1d commit bda35a7
Show file tree
Hide file tree
Showing 120 changed files with 371 additions and 371 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [2.10.1] - 2023-02-22
## [2.11.0] - 2023-02-23

### Added

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.10.0
v2.11.0
6 changes: 3 additions & 3 deletions local/oudbase/bin/oud_backup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oud_backup.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Bash Script to backup all running OUD Instances
# Notes......: This script is mainly used for environment without TVD-Basenv
# Reference..: https://github.com/oehrlis/oudbase
Expand All @@ -22,7 +22,7 @@
# - End of Customization -------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
DOAPPEND="TRUE" # enable log file append
VERBOSE="FALSE" # enable verbose mode
SCRIPT_NAME=$(basename $0)
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oud_eusm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oud_eusm.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Shell script for EUS admin tool (command line)
# Notes......: This script is mainly used for environment without TVD-Basenv
# Reference..: https://github.com/oehrlis/oudbase
Expand All @@ -19,7 +19,7 @@
# ------------------------------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
JRE_HOME=$JAVA_HOME/jre/
EUSMLIBDIR=$ORACLE_BASE/local/oudbase/lib
ORACLEPKI=$ORACLE_HOME/oracle_common/modules/oracle.pki/oraclepki.jar
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oud_export.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oud_export.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Bash Script to export all running OUD Instances
# Notes......: This script is mainly used for environment without TVD-Basenv
# Reference..: https://github.com/oehrlis/oudbase
Expand All @@ -22,7 +22,7 @@
# - End of Customization -------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
DOAPPEND="TRUE" # enable log file append
VERBOSE="FALSE" # enable verbose mode
SCRIPT_NAME=$(basename $0)
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oud_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oud_functions.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Common OUD Base functions.
# Notes......: Has to be source in the vagrant provisioning bash scripts to load
# environment and default values based on vagrant.yml
Expand All @@ -24,7 +24,7 @@

# - Environment Variables ------------------------------------------------------
# define default values
VERSION=v2.10.0
VERSION=v2.11.0
DOAPPEND=${DOAPPEND:-"TRUE"} # enable log file append
VERBOSE=${VERBOSE:-"FALSE"} # enable verbose mode
DEBUG=${DEBUG:-"FALSE"} # enable debug mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oud_start_stop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oud_start_stop.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Bash Script to start/stop OUD Instances
# Notes......: This script is mainly used for environment without TVD-Basenv
# Reference..: https://github.com/oehrlis/oudbase
Expand All @@ -22,7 +22,7 @@
# - End of Customization -------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
DOAPPEND="TRUE" # enable log file append
VERBOSE="FALSE" # enable verbose mode
FORCE="FALSE" # enable force restart
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oud_start_stop_all
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oud_start_stop_all
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Wrapper Script for oud_start_stop.sh to start/stop OUD Instances
# Notes......: This script is mainly used for environment without TVD-Basenv
# Reference..: https://github.com/oehrlis/oudbase
Expand All @@ -19,7 +19,7 @@
# ------------------------------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
SCRIPT_NAME=$(basename $0)
export OUDBASE_BIN="$(cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P)"
# - End of Default Values ------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oud_status.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oud_status.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Bash Script to get the instance status as retun code
# Notes......: This script is mainly used for environment without TVD-Basenv
# Reference..: https://github.com/oehrlis/oudbase
Expand All @@ -24,7 +24,7 @@ export OUD_CON_HANDLER=${OUD_CON_HANDLER:-"LDAP LDAPS"}
# - End of Customization -------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
DOAPPEND="TRUE" # enable log file append
VERBOSE="FALSE" # enable verbose mode
SCRIPT_NAME=$(basename $0)
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oudbase_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oudbase_install.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: This script is used as base install script for the OUD
# Environment
# Notes......: --
Expand All @@ -24,7 +24,7 @@ export LOG_BASE=${LOG_BASE-"/tmp"}
# - End of Customization -------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
DOAPPEND="TRUE" # enable log file append
VERBOSE="TRUE" # enable verbose mode
SCRIPT_NAME="$(basename ${BASH_SOURCE[0]})" # Basename of the script
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/oudenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: oudenv.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Bash Source File to set the environment for OUD Instances
# Notes......: This script is mainly used for environment without TVD-Basenv
# Reference..: https://github.com/oehrlis/oudbase
Expand All @@ -23,7 +23,7 @@
# externally. In principle, these variables should not be changed at this
# point. The customization should be done externally in .bash_profile or
# in oudenv_core.conf.
VERSION=v2.10.0
VERSION=v2.11.0

# define some binaries for later user
PGREP_BIN=$(command -v pgrep) # get the binary for pgrep
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/setup_oud.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: setup_oud.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: generic script to install Oracle Unified Directory binaries.
# Notes......: Script would like to be executed as oracle :-).
# Reference..: --
Expand All @@ -33,7 +33,7 @@ DEFAULT_OUD_ONEOFF_PKGS=""
# - End of Customization -------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
SCRIPT_NAME=$(basename $0)
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P)"
START_HEADER="START: Start of ${SCRIPT_NAME} (Version ${VERSION}) with $*"
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/setup_oud_patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: setup_oud_patch.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Script to patch Oracle Unified Directory binaries
# Notes......: - Script would like to be executed as oracle :-)
# - If the required software is not in /opt/stage, an attempt is
Expand Down Expand Up @@ -37,7 +37,7 @@ DEFAULT_OUD_ONEOFF_PKGS=""
# - End of Customization -------------------------------------------------------

# - Default Values ------------------------------------------------------
VERSION=v2.10.0
VERSION=v2.11.0
SCRIPT_NAME=$(basename $0)
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P)"
START_HEADER="START: Start of ${SCRIPT_NAME} (Version ${VERSION}) with $*"
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_add.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_add.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Add a tns entry
# Notes......: --
# Reference..: --
Expand All @@ -28,7 +28,7 @@ set -o pipefail # pipefail exit after 1st piped commands fai

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_delete.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_delete.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Delete a tns entry
# Notes......: --
# Reference..: --
Expand All @@ -28,7 +28,7 @@ set -o pipefail # pipefail exit after 1st piped commands fai

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_dump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_dump.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Dump entries as tnsnames.ora
# Notes......: --
# Reference..: --
Expand All @@ -22,7 +22,7 @@ DEFAULT_FILE_PREFIX="ldap_dump"

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_functions.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Common functions used by the TNS bash scripts.
# Notes......: --
# Reference..: --
Expand Down Expand Up @@ -42,7 +42,7 @@ TVDLDAP_DEFAULT_LDAPTOOLS=""

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_load.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_load.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Load a tnsnames.ora
# Notes......: --
# Reference..: --
Expand All @@ -29,7 +29,7 @@ set -o pipefail # pipefail exit after 1st piped commands fai

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_modify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_modify.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Modify a tns entry
# Notes......: --
# Reference..: --
Expand All @@ -28,7 +28,7 @@ set -o pipefail # pipefail exit after 1st piped commands fai

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_search.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_search.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Search a tns entry
# Notes......: --
# Reference..: --
Expand All @@ -28,7 +28,7 @@ set -o pipefail # pipefail exit after 1st piped commands fai

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
6 changes: 3 additions & 3 deletions local/oudbase/bin/tns_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# Name.......: tns_test.sh
# Author.....: Stefan Oehrli (oes) [email protected]
# Editor.....: Stefan Oehrli
# Date.......: 2023.02.21
# Version....: v2.10.0
# Date.......: 2023.02.23
# Version....: v2.11.0
# Purpose....: Test LDAP entries using tnsping and sqlplus
# Notes......: --
# Reference..: --
Expand All @@ -28,7 +28,7 @@ set -o nounset # exit if script try to use an uninitialised

# - Environment Variables ------------------------------------------------------
# define generic environment variables
VERSION=v2.10.0
VERSION=v2.11.0
TVDLDAP_VERBOSE=${TVDLDAP_VERBOSE:-"FALSE"} # enable verbose mode
TVDLDAP_DEBUG=${TVDLDAP_DEBUG:-"FALSE"} # enable debug mode
TVDLDAP_QUIET=${TVDLDAP_QUIET:-"FALSE"} # enable quiet mode
Expand Down
Loading

0 comments on commit bda35a7

Please sign in to comment.