develop #13

Merged
glenux merged 9 commits from develop into master 2025-01-12 14:33:42 +00:00
Showing only changes of commit daccaad28c - Show all commits

View file

@ -18,11 +18,10 @@ cd "$WORKDIR" || exit 1
echo "GX:BEFORE-STARTING:START ($(pwd))"
# find . -maxdepth 1
echo "GX:BEFORE-STARTING:STATUS"
php -d memory_limit=-1 occ status |jq -r '.installed'
INSTALLED="$(php -d memory_limit=-1 occ status |jq -r '.installed')"
if [ "$INSTALLED" != "true" ]; then
echo "WARNING: Not installed yet. Exiting."
# INSTALLED="$(php -d memory_limit=-1 occ status |jq -r '.installed')"
if php -d memory_limit=-1 occ status 2>&1 | grep 'not installed' ; then
echo "WARNING: Nextcloud is not installed yet. Exiting."
exit 0
fi