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
diff options
context:
space:
mode:
authorblizzz <blizzz@arthur-schiwon.de>2022-11-07 12:30:34 +0300
committerGitHub <noreply@github.com>2022-11-07 12:30:34 +0300
commite3681b837a8446101796d809b8adf24ace1b6e25 (patch)
tree063353ebd2af352a3c99c45949fc273746f9f4bf
parent21ed7f36bea22ea5020be0a55e09a9996476ff90 (diff)
parentb69fc086b79057b015fe7c1375b7c48e3161962b (diff)
Merge pull request #174 from nextcloud/bump-24.0.7HEADmaster
bump to 24.0.7
-rw-r--r--Dockerfile6
-rw-r--r--Makefile2
-rwxr-xr-xresources/entrypoint.sh2
-rw-r--r--setup5
4 files changed, 10 insertions, 5 deletions
diff --git a/Dockerfile b/Dockerfile
index 1fc476e..6049df4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -22,9 +22,9 @@
FROM ubuntu:20.04
-ADD https://download.nextcloud.com/server/releases/nextcloud-24.0.6.tar.bz2 /root/nextcloud.tar.bz2
-ADD https://github.com/nextcloud-releases/richdocuments/releases/download/v6.2.1/richdocuments-v6.2.1.tar.gz /root/richdocuments.tar.gz
-ADD https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.5.4/onlyoffice.tar.gz /root/onlyoffice.tar.gz
+ADD https://download.nextcloud.com/server/releases/nextcloud-24.0.7.tar.bz2 /root/nextcloud.tar.bz2
+ADD https://github.com/nextcloud-releases/richdocuments/releases/download/v6.3.1/richdocuments-v6.3.1.tar.gz /root/richdocuments.tar.gz
+ADD https://github.com/ONLYOFFICE/onlyoffice-nextcloud/releases/download/v7.5.8/onlyoffice.tar.gz /root/onlyoffice.tar.gz
COPY resources/entrypoint.sh /usr/sbin/
COPY resources/60-nextcloud.ini /etc/php/7.4/apache2/conf.d/
COPY resources/60-nextcloud.ini /etc/php/7.4/cli/conf.d/
diff --git a/Makefile b/Makefile
index 0bd5907..b36e70f 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
app_name=nextcloud
-app_version=24.0.6-0
+app_version=24.0.7-1
app_upgrade_from=23.0.6-0
ucs_version=4.4
diff --git a/resources/entrypoint.sh b/resources/entrypoint.sh
index d292e19..bd68fa6 100755
--- a/resources/entrypoint.sh
+++ b/resources/entrypoint.sh
@@ -2,7 +2,7 @@
if [ -f "/var/www/html/occ" ]; then
# Apply one-click-instance settings...
sudo -u www-data php /var/www/html/occ config:system:set one-click-instance --value=true --type=bool
- sudo -u www-data php /var/www/html/occ config:system:set one-click-instance.user-limit --value=100 --type=int
+ sudo -u www-data php /var/www/html/occ config:system:set one-click-instance.user-limit --value=500 --type=int
sudo -u www-data php /var/www/html/occ config:system:set one-click-instance.link --value="https://nextcloud.com/univention/"
sudo -u www-data php /var/www/html/occ app:enable support
fi
diff --git a/setup b/setup
index 95c9e7a..40697fb 100644
--- a/setup
+++ b/setup
@@ -163,6 +163,11 @@ fi
# Recreate the htaccess on both install and update
$OCC maintenance:update:htaccess
+$OCC config:system:set one-click-instance --value=true --type=bool
+$OCC config:system:set one-click-instance.user-limit --value=500 --type=int
+$OCC config:system:set one-click-instance.link --value="https://nextcloud.com/univention/"
+$OCC app:enable support
+
# env var is set from the dockerfile
if [ "$NC_IS_PATCHED" = true ]; then
$OCC config:system:set integrity.check.disabled --value="true" --type=boolean