diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-23 01:12:19 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-25 02:42:47 +0200 |
commit | 56340e0c374f9f287da09df6dbf52894d2ea4861 (patch) | |
tree | 38ab315800769c98fb614ca62811f0b2c23d6bbf /community/nextcloud/nextcloud.pre-upgrade | |
parent | 4c0262e02aa02fdedae18155d3ca87aeebeec87f (diff) | |
download | aports-56340e0c374f9f287da09df6dbf52894d2ea4861.tar.bz2 aports-56340e0c374f9f287da09df6dbf52894d2ea4861.tar.xz |
community/nextcloud: move bundled apps to /usr/share
It's totally wrong to install pkg's files into /var/lib and make them
writable by webserver! Moreover when Nextcloud supports multiple
app paths.
So we use two apps locations:
* /usr/share/webapps/nextcloud/apps - for apps installed by apk,
* /var/lib/nextcloud/apps - for apps installed from AppStore.
BTW Fedora uses the same approach.
Diffstat (limited to 'community/nextcloud/nextcloud.pre-upgrade')
-rw-r--r-- | community/nextcloud/nextcloud.pre-upgrade | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/community/nextcloud/nextcloud.pre-upgrade b/community/nextcloud/nextcloud.pre-upgrade new file mode 100644 index 0000000000..f444e78f49 --- /dev/null +++ b/community/nextcloud/nextcloud.pre-upgrade @@ -0,0 +1,10 @@ +#!/bin/sh + +ver_old="$2" +apps_link='/usr/share/webapps/nextcloud/apps' + +# Remove apps symlink before replacing files to avoid losing installed apps. +# This is a workaround for some issue in apk. +if [ $(apk version -t "$ver_old" '12.0.0-r2') = '<' ] && [ -L "$apps_link" ]; then + rm "$apps_link" +fi |