mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 22:46:55 +00:00
9 lines
234 B
Bash
9 lines
234 B
Bash
#!/bin/bash
|
|
|
|
if [ "$FULLTEXTSEARCH_ENABLED" != yes ]; then
|
|
# Basically sleep for forever if fulltextsearch is not enabled
|
|
sleep inf
|
|
fi
|
|
echo "Activating fulltextsearch..."
|
|
php /var/www/html/occ fulltextsearch:live -q
|
|
sleep inf
|