1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/scripts/upgrade

47 lines
1.3 KiB
Text
Raw Normal View History

2014-09-21 12:12:55 +02:00
#!/bin/bash
2016-08-31 08:44:08 +02:00
# Exit on command errors and treat unset variables as an error
set -eu
# Load common variables and helpers
. ./_common.sh
# Source app helpers
. /usr/share/yunohost/helpers
2017-03-12 18:48:17 +01:00
app=$YNH_APP_INSTANCE_NAME
2017-03-12 18:38:14 +01:00
FINAL_PATH="/var/www/$app"
2017-02-14 10:58:25 +01:00
#install extention for api if necessary
ynh_package_install_from_equivs ../conf/${DEPS_PKG_NAME}.control \
|| ynh_die "Unable to install dependencies"
2016-08-30 22:42:56 +02:00
# Check destination directory
[[ ! -d $FINAL_PATH ]] && ynh_die \
"The destination directory '$FINAL_PATH' does not exist.\
The app is not correctly installed, you should remove it first."
2017-03-05 20:56:16 +01:00
#old version cleanup
if [ -f $FINAL_PATH/data/user.php.dist ]; then
sudo rm $FINAL_PATH/data/user.php.dist
fi
2016-08-30 22:42:56 +02:00
# Create tmp directory and install app inside
2017-03-06 12:02:25 +01:00
TMPDIR=$(mktemp -d)
2017-03-12 18:38:14 +01:00
sudo chmod 755 "$TMPDIR"
2016-08-30 22:42:56 +02:00
extract_freshrss "$TMPDIR"
# Restore config
sudo rm $TMPDIR/data/do-install.txt
2016-08-31 08:45:09 +02:00
sudo cp $FINAL_PATH/data/config.php $TMPDIR/data/config.php
2016-08-30 22:42:56 +02:00
sudo cp -r $FINAL_PATH/data/users/. $TMPDIR/data/users/
2017-02-14 09:29:55 +01:00
sudo cp -r $FINAL_PATH/extensions/. $TMPDIR/extensions/
2016-08-30 22:42:56 +02:00
2014-09-21 12:12:55 +02:00
# Set permissions to freshrss directory
2017-02-14 09:50:14 +01:00
sudo chown -R root:root $TMPDIR
2016-08-30 22:42:56 +02:00
sudo chown -R www-data: $TMPDIR/data/
sudo chown -R www-data: $TMPDIR/extensions/
# Clean up existing files and copy new files to the right place
2016-08-31 08:46:18 +02:00
sudo rm -rf "$FINAL_PATH"
sudo cp -rp "$TMPDIR" "$FINAL_PATH"