You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.1 KiB
106 lines
3.1 KiB
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source ../settings/scripts/_common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# MANAGE SCRIPT FAILURE
|
|
#=================================================
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
path_url=$(ynh_app_setting_get "$app" path)
|
|
final_path=$(ynh_app_setting_get "$app" final_path)
|
|
db_name=$(ynh_app_setting_get "$app" db_name)
|
|
|
|
#=================================================
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
#=================================================
|
|
|
|
ynh_webpath_available "$domain" "$path_url" \
|
|
|| ynh_die "Path not available: ${domain}${path_url}"
|
|
test ! -d "$final_path" \
|
|
|| ynh_die "There is already a directory: $final_path "
|
|
|
|
#=================================================
|
|
# STANDARD RESTORATION STEPS
|
|
#=================================================
|
|
|
|
# Restore all config and data
|
|
ynh_restore
|
|
|
|
#=================================================
|
|
# RESTORE THE MYSQL DATABASE
|
|
#=================================================
|
|
|
|
db_pwd=$(ynh_app_setting_get "$app" mysqlpwd)
|
|
ynh_mysql_setup_db "$db_name" "$db_name" "$db_pwd"
|
|
ynh_mysql_connect_as "$db_name" "$db_pwd" "$db_name" < ./db.sql
|
|
|
|
#=================================================
|
|
# RECREATE THE DEDICATED USER
|
|
#=================================================
|
|
|
|
# Create the dedicated user (if not existing)
|
|
ynh_system_user_create "$app"
|
|
|
|
#=================================================
|
|
# RESTORE USER RIGHTS
|
|
#=================================================
|
|
|
|
chown $app -R $final_path
|
|
chmod u=rwX,g=rX,o= -R $final_path
|
|
|
|
#=================================================
|
|
# SPECIFIC RESTORATION
|
|
#=================================================
|
|
# REINSTALL DEPENDENCIES
|
|
#=================================================
|
|
|
|
ynh_install_app_dependencies python-dev python-virtualenv \
|
|
uwsgi uwsgi-plugin-python \
|
|
`# ARM support: ` \
|
|
build-essential libssl-dev libffi-dev
|
|
|
|
# set authorizations
|
|
chown $app:root /var/log/uwsgi/$app
|
|
chmod -R u=rwX,g=rX,o= /var/log/uwsgi/$app
|
|
|
|
#=================================================
|
|
# RESTORE SERVICE
|
|
#=================================================
|
|
|
|
usermod --append --groups www-data "$app"
|
|
|
|
systemctl daemon-reload
|
|
systemctl enable "uwsgi-app@$app.service"
|
|
|
|
#=================================================
|
|
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
#=================================================
|
|
|
|
yunohost service add "uwsgi-app@$app.service" --log "/var/log/uwsgi/app/$app"
|
|
|
|
#=================================================
|
|
# GENERIC FINALIZATION
|
|
#=================================================
|
|
# RELOAD NGINX AND PHP-FPM
|
|
#=================================================
|
|
|
|
systemctl start "uwsgi-app@$app.service"
|
|
systemctl reload nginx
|