58 lines
1.5 KiB
Text
58 lines
1.5 KiB
Text
|
#!/bin/sh
|
||
|
|
||
|
ver_new="$1"
|
||
|
ver_old="$2"
|
||
|
|
||
|
if [ $(apk version -t "$ver_old" '12.0.0-r2') = '<' ]; then
|
||
|
cat >&2 <<-EOF
|
||
|
*
|
||
|
* All Nextcloud's bundled apps (except "files" and "dav") have been moved to
|
||
|
* separate subpackages (e.g. nextcloud-activity). If you want to install
|
||
|
* all apps that are enabled by default at once, run:
|
||
|
*
|
||
|
* apk add nextcloud-default-apps
|
||
|
*
|
||
|
EOF
|
||
|
|
||
|
if [ "$(ls -A /var/lib/nextcloud/apps)" ]; then
|
||
|
cat >&2 <<-EOF
|
||
|
*
|
||
|
* Nextcloud's bundled apps have been moved from /var/lib/nextcloud/apps
|
||
|
* to /usr/share/webapps/nextcloud/apps. Only apps installed from App Store
|
||
|
* should be stored in /var/lib/nextcloud/apps.
|
||
|
*
|
||
|
* It seems that you have installed some apps from App Store, so you have to
|
||
|
* add /var/lib/nextcloud/apps to your apps_paths. Copy "apps_paths" key
|
||
|
* from /etc/nextcloud/config.php.apk-new to your config.php.
|
||
|
*
|
||
|
EOF
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
if [ $(apk version -t "$ver_old" '15.0.2-r0') = '<' ]; then
|
||
|
cat >&2 <<-EOF
|
||
|
*
|
||
|
* App "user_external" is no longer available via release channel.
|
||
|
* You need to uninstall the package and install it via appstore:
|
||
|
*
|
||
|
* apk del nextcloud-user_external
|
||
|
*
|
||
|
EOF
|
||
|
|
||
|
fi
|
||
|
|
||
|
if [ $(apk version -t "$ver_old" '20.0.0-r0') = '<' ]; then
|
||
|
cat >&2 <<-EOF
|
||
|
*
|
||
|
* If you are updating from Alpine 3.12->3.13
|
||
|
* please use the transitional package nextcloud19
|
||
|
* to upgrade from Nextcloud 18->20
|
||
|
*
|
||
|
EOF
|
||
|
|
||
|
fi
|
||
|
|
||
|
if [ "${ver_new%-r*}" != "${ver_old%-r*}" ]; then
|
||
|
echo ' * Run "occ upgrade" to finish upgrading your NextCloud instance!' >&2
|
||
|
fi
|