service-nextcloud/hooks/gx.before-starting.www.sh
Glenn Y. Rolland 3877f83ecc
Some checks reported errors
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build was killed
fix: run status before trying to install
2024-08-06 14:27:34 +02:00

39 lines
1 KiB
Bash
Executable file

#!/bin/sh
set -u
set -e
echo "== Running before-starting hooks as $(id -un) user =="
# wait for nextcloud to be initialized
WORKDIR=/var/www/html
counter=0
while [ ! -d "$WORKDIR" ] && [ "$counter" -lt 120 ]; do
echo "GX:BEFORE-STARTING:WAITING"
counter=$((counter+1))
sleep 1
done
cd "$WORKDIR" || exit 1
echo "GX:BEFORE-STARTING:START ($(pwd))"
# find . -maxdepth 1
echo "GX:BEFORE-STARTING:STATUS"
INSTALLED="$(php -d memory_limit=-1 occ status |jq -r '.installed')"
if [ "$INSTALLED" != "true" ]; then
echo "WARNING: Not installed yet. Exiting."
exit 0
fi
echo "GX:BEFORE-STARTING:UPGRADE"
php -d memory_limit=-1 occ upgrade
echo "GX:BEFORE-STARTING:DB"
php -d memory_limit=-1 occ db:convert-filecache-bigint
php -d memory_limit=-1 occ db:add-missing-indices
echo "GX:BEFORE-STARTING:HTACCESS"
php -d memory_limit=-1 occ maintenance:update:htaccess
echo "GX:BEFORE-STARTING:MAINTENANCE:OFF"
php -d memory_limit=-1 occ maintenance:mode --off
php -d memory_limit=-1 occ maintenance:mode --off || true
echo "GX:BEFORE-STARTING:END"