From df80b9fc714cfc8f0237dbd328ea8e09c5347261 Mon Sep 17 00:00:00 2001 From: jvolkenant Date: Sat, 2 Nov 2019 12:28:37 -0700 Subject: [PATCH] Allow user_external for Nextcloud 16 (and eventually 17) (#1655) --- setup/nextcloud.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/nextcloud.sh b/setup/nextcloud.sh index 99efebf8..b38e1f65 100755 --- a/setup/nextcloud.sh +++ b/setup/nextcloud.sh @@ -50,7 +50,7 @@ InstallNextcloud() { # Starting with Nextcloud 15, the app user_external is no longer included in Nextcloud core, # we will install from their github repository. - if [[ $version =~ ^15 ]]; then + if [[ $version =~ ^1[567] ]]; then wget_verify https://github.com/nextcloud/user_external/releases/download/v0.7.0/user_external-0.7.0.tar.gz 555a94811daaf5bdd336c5e48a78aa8567b86437 /tmp/user_external.tgz tar -xf /tmp/user_external.tgz -C /usr/local/lib/owncloud/apps/ rm /tmp/user_external.tgz