1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/emailpoubelle_ynh.git synced 2024-09-03 18:26:29 +02:00
emailpoubelle_ynh/scripts/restore

129 lines
4.3 KiB
Text
Raw Normal View History

2018-11-25 14:43:49 +01:00
#!/bin/bash
2018-11-25 14:43:49 +01:00
#=================================================
# GENERIC START
#=================================================
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-04-13 15:37:56 +02:00
#if [ ! -e _common.sh ]; then
# # Get the _common.sh file if it's not in the current directory
# cp ../settings/scripts/_common.sh ./_common.sh
# chmod a+rx _common.sh
#fi
source ../settings/scripts/_common.sh
2018-11-25 14:43:49 +01:00
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
#=================================================
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Loading settings..." --time --weight=1
2018-11-25 14:43:49 +01:00
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)
2019-05-19 18:59:47 +02:00
admin=$(ynh_app_setting_get $app admin)
2018-11-25 14:43:49 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Validating restoration parameters..." --time --weight=1
2018-11-25 14:43:49 +01:00
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 "
2019-05-19 18:59:47 +02:00
# Check user
ynh_user_exists "$admin"
2018-11-25 14:43:49 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Restoring the app main directory..." --time --weight=1
2018-11-25 14:43:49 +01:00
ynh_restore_file "$final_path"
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Restoring the MySQL database..." --time --weight=1
2018-11-25 14:43:49 +01:00
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
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Reinstalling dependencies..." --time --weight=1
2018-11-25 14:43:49 +01:00
# Define and install dependencies
ynh_install_app_dependencies $pkg_dependencies
2018-11-25 15:02:49 +01:00
#Check & regen local
for i in $lang ; do
ynh_replace_string "# $i" "$i" /etc/locale.gen
done
locale-gen
2018-11-25 14:43:49 +01:00
2019-05-19 18:59:47 +02:00
2018-11-25 15:02:49 +01:00
#=================================================
# RESTORE POSTFIX ALIASES
#=================================================
2019-05-21 13:49:14 +02:00
ynh_script_progression --message="Restore Postfix aliases..." --time --weight=1
2019-05-22 00:08:04 +02:00
ynh_restore_file "/usr/share/yunohost/hooks/conf_regen/98-postfix_emailpoubelle"
yunohost service regen-conf postfix
2018-11-25 15:02:49 +01:00
2019-05-19 18:59:47 +02:00
#create an alias for deleted junk adresses
2019-05-22 10:58:07 +02:00
if ! grep -q "devnull:/dev/null" /etc/aliases ; then
2019-05-19 18:59:47 +02:00
cp /etc/aliases /etc/aliases.emailpoubelle.bak #backup it
echo "devnull:/dev/null" | tee -a /etc/aliases
newaliases
fi
2018-11-25 14:43:49 +01:00
#=================================================
# RESTORE THE CRON FILE
#=================================================
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Reinstall cron job" --time --weight=1
2018-11-25 14:43:49 +01:00
ynh_restore_file "/etc/cron.d/$app"
#=================================================
# GENERIC FINALIZATION
#=================================================
2018-11-25 15:02:49 +01:00
# RELOAD NGINX & ALIASES
2018-11-25 14:43:49 +01:00
#=================================================
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Reloading nginx web server and php-fpm..." --time --weight=1
2019-05-19 18:59:47 +02:00
postmap $final_path/var/virtual
2019-05-21 13:37:11 +02:00
ynh_systemd_action --service_name=php7.0-fpm --action=restart
ynh_systemd_action --service_name=nginx --action=reload
ynh_systemd_action --service_name=postfix --action=reload
2018-11-25 15:02:49 +01:00
2019-05-21 13:37:11 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2018-11-25 15:02:49 +01:00
2019-05-21 13:37:11 +02:00
ynh_script_progression --message="Restoration completed for $app" --time --last