Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • stackspin/nextcloud
1 result
Show changes
Commits on Source (1)
......@@ -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"
......