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.
34 lines
931 B
34 lines
931 B
#!/bin/bash
|
|
# Copyright Broadcom, Inc. All Rights Reserved.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
# shellcheck disable=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 libraries
|
|
. /opt/bitnami/scripts/libbitnami.sh
|
|
. /opt/bitnami/scripts/liblog.sh
|
|
. /opt/bitnami/scripts/libwebserver.sh
|
|
|
|
print_welcome_page
|
|
|
|
if [[ "$1" = "/opt/bitnami/scripts/suitecrm/run.sh" || "$1" = "/opt/bitnami/scripts/$(web_server_type)/run.sh" || "$1" = "/opt/bitnami/scripts/nginx-php-fpm/run.sh" ]]; then
|
|
info "** Starting SuiteCRM setup **"
|
|
/opt/bitnami/scripts/"$(web_server_type)"/setup.sh
|
|
/opt/bitnami/scripts/php/setup.sh
|
|
/opt/bitnami/scripts/mysql-client/setup.sh
|
|
/opt/bitnami/scripts/suitecrm/setup.sh
|
|
/post-init.sh
|
|
info "** SuiteCRM setup finished! **"
|
|
fi
|
|
|
|
echo ""
|
|
exec "$@"
|