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