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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/ncp/CONFIG/nc-nextcloud.sh1
-rw-r--r--changelog.md4
-rw-r--r--updates/1.17.0.sh25
3 files changed, 29 insertions, 1 deletions
diff --git a/bin/ncp/CONFIG/nc-nextcloud.sh b/bin/ncp/CONFIG/nc-nextcloud.sh
index 37c8bc0e..89f577ca 100644
--- a/bin/ncp/CONFIG/nc-nextcloud.sh
+++ b/bin/ncp/CONFIG/nc-nextcloud.sh
@@ -26,6 +26,7 @@ install()
$APTINSTALL lbzip2 iputils-ping jq
$APTINSTALL -t $RELEASE php-smbclient exfat-fuse exfat-utils # for external storage
$APTINSTALL -t $RELEASE php${PHPVER}-exif # for gallery
+ $APTINSTALL -t $RELEASE php${PHPVER}-gmp # for bookmarks
#$APTINSTALL -t imagemagick php${PHPVER}-imagick ghostscript # for gallery
diff --git a/changelog.md b/changelog.md
index 4d95f81d..32aef6fb 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v1.16.2](https://github.com/nextcloud/nextcloudpi/commit/d97e2c1) (2019-09-04) custom code before/after auto-backup
+[v1.16.3](https://github.com/nextcloud/nextcloudpi/commit/835016c) (2019-09-09) bookmarks: install php-gmp
+
+[v1.16.2 ](https://github.com/nextcloud/nextcloudpi/commit/f4b4a65) (2019-09-04) custom code before/after auto-backup
[v1.16.1](https://github.com/nextcloud/nextcloudpi/commit/fd2b74b) (2019-09-02) Add missing port in nc-rsync-auto.sh (#983)
diff --git a/updates/1.17.0.sh b/updates/1.17.0.sh
new file mode 100644
index 00000000..0aa97cb6
--- /dev/null
+++ b/updates/1.17.0.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+set -e
+
+## BACKWARD FIXES ( for older images )
+
+source /usr/local/etc/library.sh # sets NCVER PHPVER RELEASE
+
+# all images
+
+# restore smbclient after dist upgrade
+apt-get update
+apt-get install -y --no-install-recommends php${PHPVER}-gmp
+
+# docker images only
+[[ -f /.docker-image ]] && {
+ :
+}
+
+# for non docker images
+[[ ! -f /.docker-image ]] && {
+ :
+}
+
+exit 0