2017-02-15 01:00:22 +01:00
#!/bin/bash
2017-08-29 02:34:05 +02:00
2020-06-07 19:24:38 +02:00
source ../settings/scripts/_common.sh
2017-02-15 01:00:22 +01:00
source /usr/share/yunohost/helpers
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2024-08-31 02:52:38 +02:00
ynh_script_progression "Restoring phpMyAdmin main directory..."
2017-08-29 02:34:05 +02:00
2024-08-31 02:52:38 +02:00
ynh_restore "$install_dir"
2021-07-10 22:32:23 +02:00
2024-08-31 02:52:38 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:www-data "$install_dir"
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
2024-08-31 02:52:38 +02:00
ynh_script_progression "Restoring the MySQL database..."
2017-08-29 02:34:05 +02:00
2024-08-31 02:52:38 +02:00
ynh_mysql_db_shell < ./db.sql
2017-02-15 01:00:22 +01:00
2018-05-23 19:09:15 +02:00
# Setup a privileged user for phpmyadmin (to prevent using MySQL root user)
2019-05-18 14:04:40 +02:00
if ! ynh_mysql_user_exists --user=$db_admin_user
then
2018-05-23 19:09:15 +02:00
ynh_mysql_create_user "$db_admin_user" "$db_admin_pwd"
2024-08-31 02:52:38 +02:00
ynh_mysql_db_shell <<< "GRANT ALL PRIVILEGES ON *.* TO '$db_admin_user'@'localhost' IDENTIFIED BY '$db_admin_pwd' WITH GRANT OPTION; FLUSH PRIVILEGES;" --database=mysql
2018-05-23 19:09:15 +02:00
fi
2019-02-17 15:42:09 +01:00
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
2017-02-15 01:00:22 +01:00
2023-11-02 18:39:09 +01:00
chown $app: $install_dir/tmp
2019-02-17 15:42:09 +01:00
2023-11-02 18:44:07 +01:00
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
2024-08-31 02:52:38 +02:00
ynh_script_progression "Restoring system configurations related to $app..."
2020-06-07 19:24:38 +02:00
# Restore the file first, so it can have a backup if different
2024-08-31 02:52:38 +02:00
ynh_restore "/etc/php/$php_version/fpm/pool.d/$app.conf"
2020-06-07 19:24:38 +02:00
2024-08-31 02:52:38 +02:00
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
2023-11-02 18:44:07 +01:00
2020-06-07 19:24:38 +02:00
# Recreate a dedicated php-fpm config
2024-08-31 02:52:38 +02:00
ynh_config_add_phpfpm
2021-11-14 11:46:43 +01:00
2017-08-29 02:34:05 +02:00
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2024-08-31 02:52:38 +02:00
ynh_script_progression "Reloading NGINX web server..."
2017-02-17 13:15:46 +01:00
2024-08-31 02:52:38 +02:00
ynh_systemctl --service=nginx --action=reload
2019-02-17 20:58:14 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2024-08-31 02:52:38 +02:00
ynh_script_progression "Restoration completed for $app"