mirror of
https://github.com/YunoHost-Apps/freshrss_ynh.git
synced 2024-09-03 18:36:33 +02:00
41 lines
950 B
Bash
41 lines
950 B
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 register-url $app $domain $path
|
|
|
|
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
|