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

32 lines
867 B
Text
Raw Normal View History

2014-09-21 12:12:55 +02:00
#!/bin/bash
2016-08-30 22:42:56 +02: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
# 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."
# Create tmp directory and install app inside
TMPDIR=$(ynh_mkdir_tmp)
extract_freshrss "$TMPDIR"
# Restore config
sudo $FINAL_PATH/data/config.php $TMPDIR/data/config.php
sudo cp -r $FINAL_PATH/data/users/. $TMPDIR/data/users/
2014-09-21 12:12:55 +02:00
# Set permissions to freshrss directory
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
sudo rm -rf "$DESTDIR"
sudo cp -r "$TMPDIR" "$DESTDIR"
2016-08-30 22:42:56 +02:00
#install extention for api
2015-11-06 16:45:48 +01:00
sudo apt-get update
sudo apt-get install -y php5-gmp