Change installation command to app:install

Signed-off-by: Matthias Emde <matthias@emdemail.de>
This commit is contained in:
Matthias Emde 2025-10-20 20:03:29 +02:00 committed by GitHub
parent 33f0d64155
commit 0c95426973
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -240,7 +240,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
echo "Starting nextcloud installation"
max_retries=10
try=0
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ app:install $install_options"
do
echo "Retrying install..."
try=$((try+1))