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/restore
Clément bb23e85824
Fix/restore (#37)
restore
2017-12-03 15:16:37 +01:00

41 lines
1 KiB
Bash

#!/bin/bash
set -eu
app=$YNH_APP_INSTANCE_NAME
db_user=$app
db_name=$app
# Source app helpers
. /usr/share/yunohost/helpers
# retrieve useful param
domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path)
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a $app || ynh_die "The path ${domain}${path} is not available for app installation."
db_pass=$(ynh_app_setting_get $app mysqlpwd)
# Restore sources & data
final_path=/var/www/$app
ynh_restore_file "$final_path"
# Restore permissions
sudo chown -R root:root $final_path
sudo chown -R www-data: $final_path/data/
sudo chown -R www-data: $final_path/extensions/
# Restore conf files
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_restore_file "/etc/cron.d/$app"
# Restore mysql dump
ynh_mysql_create_db "$db_name" "$db_user" "$db_pass"
ynh_mysql_connect_as "$db_user" "$db_pass" "$db_name" < "$app.dmp"
# Reload Nginx, and regenerate SSOwat conf
sudo service nginx reload
sudo yunohost app ssowatconf