Files
nextcloud/Containers/nextcloud/activate-collabora.sh
T
2022-08-25 12:53:36 +02:00

14 lines
294 B
Bash

#!/bin/bash
if [ "$COLLABORA_ENABLED" != yes ]; then
# Basically sleep for forever if collabora is not enabled
sleep inf
fi
while ! nc -z "$NC_DOMAIN" 443; do
sleep 5
done
sleep 10
echo "Activating collabora config..."
php /var/www/html/occ richdocuments:activate-config
sleep inf