mirror of
https://github.com/YunoHost-Apps/pelican_ynh.git
synced 2024-09-03 19:46:35 +02:00
Update restore
This commit is contained in:
parent
6cdd4dcb1c
commit
7d071734d8
1 changed files with 35 additions and 111 deletions
146
scripts/restore
146
scripts/restore
|
@ -1,128 +1,52 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# GENERIC START
|
|
||||||
#=================================================
|
|
||||||
# MANAGE SCRIPT FAILURE
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
# Exit on command errors and treat access to unset variables as an error
|
# Exit on command errors and treat access to unset variables as an error
|
||||||
set -eu
|
set -eu
|
||||||
|
|
||||||
#=================================================
|
# Source app helpers and functions
|
||||||
# IMPORT GENERIC HELPERS
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
if [ ! -e _common.sh ]; then
|
|
||||||
# Get the _common.sh file if it's not in the current directory
|
|
||||||
sudo cp ../settings/scripts/_common.sh ./_common.sh
|
|
||||||
sudo chmod a+rx _common.sh
|
|
||||||
fi
|
|
||||||
source _common.sh
|
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# LOAD SETTINGS
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
app=$YNH_APP_INSTANCE_NAME
|
app=$YNH_APP_INSTANCE_NAME
|
||||||
|
|
||||||
domain=$(ynh_app_setting_get $app domain)
|
# Retrieve arguments
|
||||||
path_url=$(ynh_app_setting_get $app path)
|
domain=$(ynh_app_setting_get "$app" domain)
|
||||||
final_path=$(ynh_app_setting_get $app final_path)
|
path=$(ynh_app_setting_get "$app" path)
|
||||||
db_name=$(ynh_app_setting_get $app db_name)
|
is_public=$(ynh_app_setting_get "$app" is_public)
|
||||||
|
|
||||||
#=================================================
|
# is_public is now a boolean field
|
||||||
# CHECK IF THE APP CAN BE RESTORED
|
if [ "$is_public" = "Yes" ];
|
||||||
#=================================================
|
then
|
||||||
|
is_public=1
|
||||||
|
fi
|
||||||
|
|
||||||
sudo yunohost app checkurl "${domain}${path_url}" -a "$app" \
|
# Check domain/path availability
|
||||||
|| ynh_die "Path not available: ${domain}${path_url}"
|
sudo yunohost app checkurl $domain$path -a $app \
|
||||||
test ! -d $final_path \
|
|| ynh_die "The path ${domain}${path} is not available for app installation."
|
||||||
|| ynh_die "There is already a directory: $final_path "
|
|
||||||
|
|
||||||
#=================================================
|
# Check destination directory
|
||||||
# STANDARD RESTORATION STEPS
|
DESTDIR="/var/www/$app"
|
||||||
#=================================================
|
[[ -d $DESTDIR ]] && ynh_die \
|
||||||
# RESTORE THE NGINX CONFIGURATION
|
"The destination directory '$DESTDIR' already exists.\
|
||||||
#=================================================
|
You should safely delete it before restoring this app."
|
||||||
|
|
||||||
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
|
# Check configuration files
|
||||||
|
NGINX_CONF="/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
||||||
|
[[ -f $NGINX_CONF ]] && ynh_die \
|
||||||
|
"The NGINX configuration already exists at '${NGINX_CONF}'.
|
||||||
|
You should safely delete it before restoring this app."
|
||||||
|
|
||||||
#=================================================
|
# Restore the app files
|
||||||
# RESTORE THE APP MAIN DIR
|
sudo cp -a ./www "$DESTDIR"
|
||||||
#=================================================
|
|
||||||
|
|
||||||
ynh_restore_file "$final_path"
|
# Restore configuration files
|
||||||
|
sudo cp -a ./conf/nginx.conf "$NGINX_CONF"
|
||||||
|
|
||||||
#=================================================
|
# Make app public if necessary
|
||||||
# RESTORE THE MYSQL DATABASE
|
sudo yunohost app setting $app is_public -v "$is_public"
|
||||||
#=================================================
|
if [[ "$is_public" -ne 0 ]];
|
||||||
|
then
|
||||||
|
sudo yunohost app setting $app unprotected_uris -v "/"
|
||||||
|
fi
|
||||||
|
|
||||||
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
# Reload Nginx and regenerate SSOwat conf
|
||||||
ynh_mysql_setup_db $db_name $db_name $db_pwd
|
sudo service nginx reload
|
||||||
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
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
# Restore permissions on app files
|
|
||||||
sudo chown -R root: $final_path
|
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# RESTORE THE PHP-FPM CONFIGURATION
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
ynh_restore_file "/etc/php5/fpm/pool.d/$app.conf"
|
|
||||||
ynh_restore_file "/etc/php5/fpm/conf.d/20-$app.ini"
|
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# SPECIFIC RESTORATION
|
|
||||||
#=================================================
|
|
||||||
# REINSTALL DEPENDENCIES
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
# Define and install dependencies
|
|
||||||
ynh_install_app_dependencies deb1 deb2
|
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# ADVERTISE SERVICE IN ADMIN PANEL
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
sudo yunohost service add $app --log "/var/log/$app/APP.log"
|
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# RESTORE SYSTEMD
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
ynh_restore_file "/etc/systemd/system/$app.service"
|
|
||||||
sudo systemctl enable $app.service
|
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# RESTORE THE CRON FILE
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
ynh_restore_file "/etc/cron.d/$app"
|
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# BACKUP THE LOGROTATE CONFIGURATION
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
ynh_restore_file "/etc/logrotate.d/$app"
|
|
||||||
|
|
||||||
#=================================================
|
|
||||||
# GENERIC FINALIZATION
|
|
||||||
#=================================================
|
|
||||||
# RELOAD NGINX AND PHP-FPM
|
|
||||||
#=================================================
|
|
||||||
|
|
||||||
sudo systemctl reload php5-fpm
|
|
||||||
sudo systemctl reload nginx
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue