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
|
2015-02-09 12:57:56 +01:00
|
|
|
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"
|
|
|
|
|
2015-10-03 11:58:14 +02:00
|
|
|
|
2016-08-30 22:42:56 +02:00
|
|
|
#install extention for api
|
2015-11-06 16:45:48 +01:00
|
|
|
sudo apt-get update
|
2015-10-03 11:58:14 +02:00
|
|
|
sudo apt-get install -y php5-gmp
|