Skip to content
Snippets Groups Projects
Commit 689f1017 authored by Arie Peterson's avatar Arie Peterson
Browse files

Merge branch '1119-configuring-webcron-still-fails-for-some-existing-clusters' into 'main'

Resolve "Configuring webcron still fails for some existing clusters"

Closes #1119

See merge request !591
parents 8c9a5135 e4f41663
No related branches found
No related tags found
1 merge request!591Resolve "Configuring webcron still fails for some existing clusters"
Pipeline #47012 failed with stages
in 5 minutes and 25 seconds
......@@ -164,7 +164,9 @@ data:
run_as "php $occ config:import /var/local/config.json"
# We used to set this in `config.json` too, but ran into a nextcloud bug:
# https://github.com/nextcloud/server/issues/45083
run_as "php $occ config:app:set --value webcron --type string core backgroundjobs_mode"
# The `echo "yes"` is necessary because in some cases nextcloud will warn
# about the string type and ask for confirmation.
echo "yes" | run_as "php $occ config:app:set --value webcron --type string core backgroundjobs_mode"
echo "Updating database indices, columns, keys, etc."
run_as "php $occ db:add-missing-indices --no-interaction"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment