From e4ef8a7c8e36947a396d44105ccc6ad6629c3d2c Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Mon, 23 Jan 2017 11:33:35 +0530 Subject: [PATCH] php: initialize module at launch --- bitnami/drupal/rootfs/app-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitnami/drupal/rootfs/app-entrypoint.sh b/bitnami/drupal/rootfs/app-entrypoint.sh index fc30212fb8d0..c4e4812a42f1 100755 --- a/bitnami/drupal/rootfs/app-entrypoint.sh +++ b/bitnami/drupal/rootfs/app-entrypoint.sh @@ -24,7 +24,7 @@ export MARIADB_HOST=${MARIADB_HOST:-"mariadb"} export MARIADB_PORT=${MARIADB_PORT:-"3306"} if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "/init.sh" ]]; then - for module in apache drupal; do + for module in apache php drupal; do initialize $module done echo "Starting application ..."