Skip to content

Commit f02b8b0

Browse files
author
GitHub Workflow
committedJul 11, 2024
Runs update.sh
1 parent 75e1b80 commit f02b8b0

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed
 

‎27/apache/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎27/fpm-alpine/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎27/fpm/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎28/apache/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎28/fpm-alpine/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎28/fpm/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎29/apache/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎29/fpm-alpine/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

‎29/fpm/entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if expr "$1" : "apache" 1>/dev/null || [ "$1" = "php-fpm" ] || [ "${NEXTCLOUD_UP
225225
echo "Starting nextcloud installation"
226226
max_retries=10
227227
try=0
228-
until run_as "php /var/www/html/occ maintenance:install $install_options" || [ "$try" -gt "$max_retries" ]
228+
until [ "$try" -gt "$max_retries" ] || run_as "php /var/www/html/occ maintenance:install $install_options"
229229
do
230230
echo "Retrying install..."
231231
try=$((try+1))

0 commit comments

Comments
 (0)
Please sign in to comment.