Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Empty file.
4 changes: 2 additions & 2 deletions OracleManagementAgent/dockerfiles/latest/container-scripts/install_zip.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function install_agent()
{
export SYSTEM_MANAGER_OVERRIDE=true
_unpack_install_bundle "$1"
execute_cmd "/bin/bash ${PACKAGES}/installer.sh $CONFIG_FILE" "install"
execute_cmd "/bin/bash ${INSTALL_BASEDIR}/installer.sh $CONFIG_FILE" "install"
return $?
}

Expand All @@ -65,7 +65,7 @@ function upgrade_with_install_bundle()
{
export SYSTEM_MANAGER_OVERRIDE=true
_unpack_install_bundle "$1"
execute_cmd "/bin/bash ${PACKAGES}/installer.sh -u" "upgrade"
execute_cmd "/bin/bash ${INSTALL_BASEDIR}/installer.sh -u" "upgrade"
return $?
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ BOOTSTRAP_HOME="$BASE_DIR/bootstrap"
SCRIPTS=$BOOTSTRAP_HOME/scripts
PACKAGES=$BOOTSTRAP_HOME/packages
# shellcheck disable=SC2034
INSTALL_BASEDIR=$PACKAGES/mgmt_agent
# shellcheck disable=SC2034
UPGRADE_STAGE=$BOOTSTRAP_HOME/upgrade
CONFIG_FILE="$BASE_DIR/mgmtagent_secret/input.rsp"
MGMTAGENT_HOME="$BASE_DIR/mgmt_agent"
Expand Down