mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
13 lines
294 B
Bash
13 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
|