You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.4 KiB
42 lines
1.4 KiB
#!/bin/bash
|
|
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
# shellcheck disable=SC1090,SC1091
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
# set -o xtrace # Uncomment this line for debugging purposes
|
|
|
|
# Load SuiteCRM environment
|
|
. /opt/bitnami/scripts/suitecrm-env.sh
|
|
|
|
# Load MySQL Client environment for 'mysql_remote_execute' (after 'suitecrm-env.sh' so that MODULE is not set to a wrong value)
|
|
if [[ -f /opt/bitnami/scripts/mysql-client-env.sh ]]; then
|
|
. /opt/bitnami/scripts/mysql-client-env.sh
|
|
elif [[ -f /opt/bitnami/scripts/mysql-env.sh ]]; then
|
|
. /opt/bitnami/scripts/mysql-env.sh
|
|
elif [[ -f /opt/bitnami/scripts/mariadb-env.sh ]]; then
|
|
. /opt/bitnami/scripts/mariadb-env.sh
|
|
fi
|
|
|
|
# Load PHP environment for cron configuration (after 'moodle-env.sh' so that MODULE is not set to a wrong value)
|
|
. /opt/bitnami/scripts/php-env.sh
|
|
|
|
# Load libraries
|
|
. /opt/bitnami/scripts/libsuitecrm.sh
|
|
. /opt/bitnami/scripts/libwebserver.sh
|
|
|
|
# Load web server environment and functions (after SuiteCRM environment file so MODULE is not set to a wrong value)
|
|
. "/opt/bitnami/scripts/$(web_server_type)-env.sh"
|
|
|
|
# Ensure SuiteCRM environment variables are valid
|
|
suitecrm_validate
|
|
|
|
# Update web server configuration with runtime environment (needs to happen before the initialization)
|
|
web_server_update_app_configuration "suitecrm"
|
|
|
|
# Ensure SuiteCRM is initialized
|
|
suitecrm_initialize
|