Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/univention-app.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/inst
diff options
context:
space:
mode:
authorNico Gulden <gulden@univention.de>2018-09-06 00:54:49 +0300
committerNico Gulden <gulden@univention.de>2018-09-06 00:54:49 +0300
commit93f9ad003b07e3583a290752df3b28efba572a68 (patch)
tree2ba1121fb00e304f345238ba51fa93ab6568dc05 /inst
parenteebc72704639d40b91dfbefd94df34205400f6d0 (diff)
Drop explicit disabling of online office apps
When the apps are installed in Nextcloud in the docker image, they are disabled by default. There is no need to disable them. Running the inst script upon update could disable the online office apps unintentionally. This is avoided now.
Diffstat (limited to 'inst')
-rw-r--r--inst4
1 files changed, 0 insertions, 4 deletions
diff --git a/inst b/inst
index 2f167b7..8c7ba2c 100644
--- a/inst
+++ b/inst
@@ -353,8 +353,6 @@ detect_collabora () {
if [ ${occCode} -eq 0 ] && [ "$(univention-app shell nextcloud sudo -u www-data /var/www/html/occ config:app:get richdocuments wopi_url)" = "" ] ; then
univention-app shell nextcloud sudo -u www-data /var/www/html/occ config:app:set richdocuments wopi_url --value="https://$FQDN/"
fi
- else
- univention-app shell nextcloud sudo -u www-data /var/www/html/occ app:disable richdocuments
fi
}
@@ -370,8 +368,6 @@ detect_onlyoffice () {
if [ ${occCode} -eq 0 ] && [ "$(univention-app shell nextcloud sudo -u www-data /var/www/html/occ config:app:get onlyoffice DocumentServerUrl)" = "" ] ; then
univention-app shell nextcloud occ config:app:set onlyoffice DocumentServerUrl --value="https://$FQDN/onlyoffice-documentserver"
fi
- else
- univention-app shell nextcloud sudo -u www-data /var/www/html/occ app:disable onlyoffice
fi
}