33 lines
835 B
Bash
Executable File
33 lines
835 B
Bash
Executable File
#!/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 DokuWiki environment
|
|
. /opt/bitnami/scripts/dokuwiki-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/$(web_server_type)/run.sh" || "$1" = "/opt/bitnami/scripts/nginx-php-fpm/run.sh" ]]; then
|
|
info "** Starting DokuWiki setup **"
|
|
/opt/bitnami/scripts/"$(web_server_type)"/setup.sh
|
|
/opt/bitnami/scripts/php/setup.sh
|
|
/opt/bitnami/scripts/dokuwiki/setup.sh
|
|
/post-init.sh
|
|
info "** DokuWiki setup finished! **"
|
|
fi
|
|
|
|
echo ""
|
|
exec "$@"
|