From de90bed706d03973c8181b695e0207fa45847c28 Mon Sep 17 00:00:00 2001 From: stackcoder Date: Sun, 26 Jul 2020 16:32:24 +0200 Subject: Fix triggering install and update script (#1181) * Match cmd provided by Dockerfile again with entrypoint.sh Signed-off-by: stackcoder * Fixup README.md Signed-off-by: stackcoder --- 18.0/apache/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '18.0/apache/entrypoint.sh') diff --git a/18.0/apache/entrypoint.sh b/18.0/apache/entrypoint.sh index b9ec5fc5..f1dd332c 100755 --- a/18.0/apache/entrypoint.sh +++ b/18.0/apache/entrypoint.sh @@ -43,13 +43,13 @@ file_env() { unset "$fileVar" } -if expr "$1" : "apache" 1>/dev/null; then +if expr "$1" : "apache2-foreground" 1>/dev/null; then if [ -n "${APACHE_DISABLE_REWRITE_IP+x}" ]; then a2disconf remoteip fi fi -if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UPDATE:-0}" -eq 1 ]; then +if expr "$1" : "apache2-foreground" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UPDATE:-0}" -eq 1 ]; then if [ -n "${REDIS_HOST+x}" ]; then echo "Configuring Redis as session handler" -- cgit v1.2.3