aboutsummaryrefslogtreecommitdiff
path: root/Docker/entrypoint.sh
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-06-14 15:18:26 +0200
committerGravatar GitHub <noreply@github.com> 2023-06-14 15:18:26 +0200
commit644427b9b1a0cf525b84f4a2aac2d6a5a2f55045 (patch)
tree69131c035dc2e48758da83bb3b2fb63b5b82bf29 /Docker/entrypoint.sh
parentdd5a02106184e72e42c06a139793088ee955fb00 (diff)
Docker quiet Apache a2enmod (#5464)
Quiet output for a2enmod, a2dismod, a2disconf, a2dissite, a2ensite to avoid many messages the following, which are not even relevant because Apache is not yet started at this stage: ``` To activate the new configuration, you need to run: systemctl restart apache2 ``` Related to https://github.com/FreshRSS/FreshRSS/pull/5463
Diffstat (limited to 'Docker/entrypoint.sh')
-rwxr-xr-xDocker/entrypoint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Docker/entrypoint.sh b/Docker/entrypoint.sh
index 6420ca219..18fc88f92 100755
--- a/Docker/entrypoint.sh
+++ b/Docker/entrypoint.sh
@@ -12,7 +12,7 @@ if [ -n "$LISTEN" ]; then
fi
if [ -n "$OIDC_ENABLED" ] && [ "$OIDC_ENABLED" -ne 0 ]; then
- a2enmod auth_openidc
+ a2enmod -q auth_openidc
fi
if [ -n "$CRON_MIN" ]; then